blade-tool/blade-core-tool/src/main/java/org/springblade/core/tool/constant/SystemConstant.java
2018-12-29 18:46:01 +08:00

103 lines
2.0 KiB
Java

/**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com).
* <p>
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.gnu.org/licenses/lgpl.html
* <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 org.springblade.core.tool.constant;
import lombok.Data;
/**
* Blade系统配置类
*
* @author Chill
*/
@Data
public class SystemConstant {
/**
* 开发模式
*/
private boolean devMode = false;
/**
* 远程上传模式
*/
private boolean remoteMode = false;
/**
* 外网地址
*/
private String domain = "http://localhost:8888";
/**
* 上传下载路径(物理路径)
*/
private String remotePath = System.getProperty("user.dir") + "/target/blade";
/**
* 上传路径(相对路径)
*/
private String uploadPath = "/upload";
/**
* 下载路径
*/
private String downloadPath = "/download";
/**
* 图片压缩
*/
private boolean compress = false;
/**
* 图片压缩比例
*/
private Double compressScale = 2.00;
/**
* 图片缩放选择:true放大;false缩小
*/
private boolean compressFlag = false;
/**
* 项目物理路径
*/
private String realPath = System.getProperty("user.dir");
/**
* 项目相对路径
*/
private String contextPath = "/";
private static final SystemConstant ME = new SystemConstant();
private SystemConstant() {
}
public static SystemConstant me() {
return ME;
}
public String getUploadRealPath() {
return (remoteMode ? remotePath : realPath) + uploadPath;
}
public String getUploadCtxPath() {
return contextPath + uploadPath;
}
}