首页>代码>基于SSM的社区医疗管理系统代码分享>/guns/src/main/java/cn/stylefeng/guns/config/properties/GunsProperties.java
/**
* Copyright 2018-2020 stylefeng & fengshuonan (sn93@qq.com)
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 cn.stylefeng.guns.config.properties;
import cn.stylefeng.roses.core.util.ToolUtil;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.io.File;
import static cn.stylefeng.roses.core.util.ToolUtil.getTempPath;
/**
* guns项目配置
*
* @author stylefeng
* @Date 2017/5/23 22:31
*/
@Component
@ConfigurationProperties(prefix = GunsProperties.PREFIX)
public class GunsProperties {
public static final String PREFIX = "guns";
private Boolean kaptchaOpen = false;
private Boolean swaggerOpen = false;
private String fileUploadPath;
private Boolean haveCreatePath = false;
private Boolean springSessionOpen = false;
/**
* session 失效时间(默认为30分钟 单位:秒)
*/
private Integer sessionInvalidateTime = 30 * 60;
/**
* session 验证失效时间(默认为15分钟 单位:秒)
*/
private Integer sessionValidationInterval = 15 * 60;
public String getFileUploadPath() {
//如果没有写文件上传路径,保存到临时目录
if (ToolUtil.isEmpty(fileUploadPath)) {
return getTempPath();
} else {
//判断有没有结尾符,没有得加上
if (!fileUploadPath.endsWith(File.separator)) {
fileUploadPath = fileUploadPath + File.separator;
}
//判断目录存不存在,不存在得加上
if (!haveCreatePath) {
File file = new File(fileUploadPath);
file.mkdirs();
haveCreatePath = true;
}
return fileUploadPath;
}
}
public void setFileUploadPath(String fileUploadPath) {
this.fileUploadPath = fileUploadPath;
}
public Boolean getKaptchaOpen() {
return kaptchaOpen;
}
public void setKaptchaOpen(Boolean kaptchaOpen) {
this.kaptchaOpen = kaptchaOpen;
}
public Boolean getSwaggerOpen() {
return swaggerOpen;
}
public void setSwaggerOpen(Boolean swaggerOpen) {
this.swaggerOpen = swaggerOpen;
}
public Boolean getSpringSessionOpen() {
return springSessionOpen;
}
public void setSpringSessionOpen(Boolean springSessionOpen) {
this.springSessionOpen = springSessionOpen;
}
public Integer getSessionInvalidateTime() {
return sessionInvalidateTime;
}
public void setSessionInvalidateTime(Integer sessionInvalidateTime) {
this.sessionInvalidateTime = sessionInvalidateTime;
}
public Integer getSessionValidationInterval() {
return sessionValidationInterval;
}
public void setSessionValidationInterval(Integer sessionValidationInterval) {
this.sessionValidationInterval = sessionValidationInterval;
}
}
最近下载更多
hrbylw LV9
8月9日
哪里的完整版 LV8
4月2日
半夏bx LV15
2024年10月23日
angaochong LV5
2024年10月14日
yvimib LV3
2024年9月24日
yyhrhv LV8
2024年5月30日
zolscy LV24
2024年4月29日
wanglinddad LV55
2024年3月26日
jc121140 LV3
2024年2月21日
admin_z LV22
2024年2月4日
最近浏览更多
奋斗的小蚂蚁 LV15
前天
vincemokea LV9
10月12日
hrbylw LV9
8月9日
xp95323 LV15
7月4日
qixisb250dasb
5月6日
暂无贡献等级
yanguobin LV7
2月28日
哪里的完整版 LV8
2月27日
ryadmin123 LV2
2月6日
微信网友_7371218154688512 LV4
2月5日
水墨红尘 LV2
2024年12月24日

