Browse Source
* pr/9554: Polish "Ensure compatibility with Spring Session module split" Ensure compatibility with Spring Session module splitpull/9566/merge
9 changed files with 242 additions and 172 deletions
@ -0,0 +1,57 @@
@@ -0,0 +1,57 @@
|
||||
/* |
||||
* Copyright 2012-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.session; |
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
import org.springframework.session.hazelcast.HazelcastFlushMode; |
||||
|
||||
/** |
||||
* Configuration properties for Hazelcast backed Spring Session. |
||||
* |
||||
* @author Vedran Pavic |
||||
* @since 2.0.0 |
||||
*/ |
||||
@ConfigurationProperties(prefix = "spring.session.hazelcast") |
||||
public class HazelcastSessionProperties { |
||||
|
||||
/** |
||||
* Name of the map used to store sessions. |
||||
*/ |
||||
private String mapName = "spring:session:sessions"; |
||||
|
||||
/** |
||||
* Sessions flush mode. |
||||
*/ |
||||
private HazelcastFlushMode flushMode = HazelcastFlushMode.ON_SAVE; |
||||
|
||||
public String getMapName() { |
||||
return this.mapName; |
||||
} |
||||
|
||||
public void setMapName(String mapName) { |
||||
this.mapName = mapName; |
||||
} |
||||
|
||||
public HazelcastFlushMode getFlushMode() { |
||||
return this.flushMode; |
||||
} |
||||
|
||||
public void setFlushMode(HazelcastFlushMode flushMode) { |
||||
this.flushMode = flushMode; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,91 @@
@@ -0,0 +1,91 @@
|
||||
/* |
||||
* Copyright 2012-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.session; |
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
|
||||
/** |
||||
* Configuration properties for JDBC backed Spring Session. |
||||
* |
||||
* @author Vedran Pavic |
||||
* @since 2.0.0 |
||||
*/ |
||||
@ConfigurationProperties(prefix = "spring.session.jdbc") |
||||
public class JdbcSessionProperties { |
||||
|
||||
private static final String DEFAULT_SCHEMA_LOCATION = "classpath:org/springframework/" |
||||
+ "session/jdbc/schema-@@platform@@.sql"; |
||||
|
||||
private static final String DEFAULT_TABLE_NAME = "SPRING_SESSION"; |
||||
|
||||
/** |
||||
* Path to the SQL file to use to initialize the database schema. |
||||
*/ |
||||
private String schema = DEFAULT_SCHEMA_LOCATION; |
||||
|
||||
/** |
||||
* Name of database table used to store sessions. |
||||
*/ |
||||
private String tableName = DEFAULT_TABLE_NAME; |
||||
|
||||
private final Initializer initializer = new Initializer(); |
||||
|
||||
public String getSchema() { |
||||
return this.schema; |
||||
} |
||||
|
||||
public void setSchema(String schema) { |
||||
this.schema = schema; |
||||
} |
||||
|
||||
public String getTableName() { |
||||
return this.tableName; |
||||
} |
||||
|
||||
public void setTableName(String tableName) { |
||||
this.tableName = tableName; |
||||
} |
||||
|
||||
public Initializer getInitializer() { |
||||
return this.initializer; |
||||
} |
||||
|
||||
public class Initializer { |
||||
|
||||
/** |
||||
* Create the required session tables on startup if necessary. Enabled |
||||
* automatically if the default table name is set or a custom schema is |
||||
* configured. |
||||
*/ |
||||
private Boolean enabled; |
||||
|
||||
public boolean isEnabled() { |
||||
if (this.enabled != null) { |
||||
return this.enabled; |
||||
} |
||||
boolean defaultTableName = DEFAULT_TABLE_NAME.equals(getTableName()); |
||||
boolean customSchema = !DEFAULT_SCHEMA_LOCATION.equals(getSchema()); |
||||
return (defaultTableName || customSchema); |
||||
} |
||||
|
||||
public void setEnabled(boolean enabled) { |
||||
this.enabled = enabled; |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,57 @@
@@ -0,0 +1,57 @@
|
||||
/* |
||||
* Copyright 2012-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.session; |
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
import org.springframework.session.data.redis.RedisFlushMode; |
||||
|
||||
/** |
||||
* Configuration properties for Redis backed Spring Session. |
||||
* |
||||
* @author Vedran Pavic |
||||
* @since 2.0.0 |
||||
*/ |
||||
@ConfigurationProperties(prefix = "spring.session.redis") |
||||
public class RedisSessionProperties { |
||||
|
||||
/** |
||||
* Namespace for keys used to store sessions. |
||||
*/ |
||||
private String namespace = ""; |
||||
|
||||
/** |
||||
* Sessions flush mode. |
||||
*/ |
||||
private RedisFlushMode flushMode = RedisFlushMode.ON_SAVE; |
||||
|
||||
public String getNamespace() { |
||||
return this.namespace; |
||||
} |
||||
|
||||
public void setNamespace(String namespace) { |
||||
this.namespace = namespace; |
||||
} |
||||
|
||||
public RedisFlushMode getFlushMode() { |
||||
return this.flushMode; |
||||
} |
||||
|
||||
public void setFlushMode(RedisFlushMode flushMode) { |
||||
this.flushMode = flushMode; |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue