forked from indigo-iam/iam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#809_adding code to allow storage of HTTPSession with JDBC
- Loading branch information
1 parent
def2c42
commit 4fee1d3
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
iam-login-service/src/main/resources/application-jdbc-session.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
spring: | ||
session: | ||
store-type: jdbc | ||
jdbc: | ||
cleanup-cron: 0 */45 * * * * | ||
table-name: SPRING_SESSION |
24 changes: 24 additions & 0 deletions
24
iam-persistence/src/main/resources/db/migration/mysql/V105__jdbc_session.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
CREATE TABLE IF NOT EXISTS SPRING_SESSION | ||
( | ||
PRIMARY_ID CHAR(36) NOT NULL, | ||
SESSION_ID CHAR(36) NOT NULL, | ||
CREATION_TIME BIGINT NOT NULL, | ||
LAST_ACCESS_TIME BIGINT NOT NULL, | ||
MAX_INACTIVE_INTERVAL INT NOT NULL, | ||
EXPIRY_TIME BIGINT NOT NULL, | ||
PRINCIPAL_NAME VARCHAR(100), | ||
CONSTRAINT SPRING_SESSION_PK PRIMARY KEY (PRIMARY_ID) | ||
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC; | ||
|
||
CREATE UNIQUE INDEX SPRING_SESSION_IX1 ON SPRING_SESSION (SESSION_ID); | ||
CREATE INDEX SPRING_SESSION_IX2 ON SPRING_SESSION (EXPIRY_TIME); | ||
CREATE INDEX SPRING_SESSION_IX3 ON SPRING_SESSION (PRINCIPAL_NAME); | ||
|
||
CREATE TABLE IF NOT EXISTS SPRING_SESSION_ATTRIBUTES | ||
( | ||
SESSION_PRIMARY_ID CHAR(36) NOT NULL, | ||
ATTRIBUTE_NAME VARCHAR(200) NOT NULL, | ||
ATTRIBUTE_BYTES BLOB NOT NULL, | ||
CONSTRAINT SPRING_SESSION_ATTRIBUTES_PK PRIMARY KEY (SESSION_PRIMARY_ID, ATTRIBUTE_NAME), | ||
CONSTRAINT SPRING_SESSION_ATTRIBUTES_FK FOREIGN KEY (SESSION_PRIMARY_ID) REFERENCES SPRING_SESSION (PRIMARY_ID) ON DELETE CASCADE | ||
) ENGINE=InnoDB ROW_FORMAT=DYNAMIC; |