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
spring.session.jdbc.initialize-schema=always | |
spring.session.jdbc.table-name=SPRING_SESSION | |
spring.session.jdbc.schema=classpath:session_tables.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
CREATE TABLE spring_session ( | |
primary_id CHAR(36) NOT NULL | |
CONSTRAINT spring_session_pk | |
PRIMARY KEY, | |
session_id CHAR(36) NOT NULL, | |
creation_time BIGINT NOT NULL, | |
last_access_time BIGINT NOT NULL, | |
max_inactive_interval INTEGER NOT NULL, | |
expiry_time BIGINT NOT NULL, | |
principal_name VARCHAR(300) -- <= here was 100 |
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
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-test</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.security</groupId> | |
<artifactId>spring-security-test</artifactId> | |
<version>RELEASE</version> | |
<scope>test</scope> |
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
const path = require('path'); | |
const VueLoaderPlugin = require('vue-loader/lib/plugin'); | |
module.exports = { | |
mode: 'development', | |
devtool: 'source-map', | |
entry: path.join(__dirname, 'src', 'main', 'resources', 'static', 'js', 'main.js'), | |
devServer: { | |
contentBase: './dist', | |
compress: true, |
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
{ | |
"name": "sarafan", | |
"version": "1.0.0", | |
"description": "", | |
"main": "webpack.config.js", | |
"dependencies": { | |
"vue": "^2.5.17", | |
"vue-resource": "^1.5.1" | |
}, | |
"devDependencies": { |
NewerOlder