2019-04-11 14:45:22 +08:00
|
|
|
package cn.keking.config;
|
|
|
|
|
2019-04-16 13:48:57 +08:00
|
|
|
import org.artofsolving.jodconverter.office.OfficeUtils;
|
2019-04-11 14:45:22 +08:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import javax.annotation.PostConstruct;
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.FileReader;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Properties;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @auther: chenjh
|
|
|
|
* @time: 2019/4/10 16:16
|
|
|
|
* @description 每隔1s读取并更新一次配置文件
|
|
|
|
*/
|
|
|
|
@Component
|
|
|
|
public class ConfigRefreshComponent {
|
|
|
|
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(ConfigRefreshComponent.class);
|
|
|
|
|
|
|
|
@PostConstruct
|
|
|
|
void refresh() {
|
|
|
|
Thread configRefreshThread = new Thread(new ConfigRefreshThread());
|
|
|
|
configRefreshThread.start();
|
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
static class ConfigRefreshThread implements Runnable {
|
2019-04-11 14:45:22 +08:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
Properties properties = new Properties();
|
2019-04-15 10:23:03 +08:00
|
|
|
String text;
|
|
|
|
String media;
|
2020-05-15 18:09:19 +08:00
|
|
|
boolean cacheEnabled;
|
2019-04-25 18:39:58 +08:00
|
|
|
String[] textArray;
|
2019-04-15 10:23:03 +08:00
|
|
|
String[] mediaArray;
|
2019-04-25 18:39:58 +08:00
|
|
|
String officePreviewType;
|
2020-12-25 18:19:30 +08:00
|
|
|
String officePreviewSwitchDisabled;
|
2019-06-19 14:18:09 +08:00
|
|
|
String ftpUsername;
|
|
|
|
String ftpPassword;
|
|
|
|
String ftpControlEncoding;
|
2019-04-18 11:49:29 +08:00
|
|
|
String configFilePath = OfficeUtils.getCustomizedConfigPath();
|
2019-10-31 16:52:58 +08:00
|
|
|
String baseUrl;
|
2020-02-18 19:36:15 +08:00
|
|
|
String trustHost;
|
2020-05-14 19:28:21 +08:00
|
|
|
String pdfDownloadDisable;
|
2019-04-11 14:45:22 +08:00
|
|
|
while (true) {
|
2019-05-16 17:42:35 +08:00
|
|
|
FileReader fileReader = new FileReader(configFilePath);
|
|
|
|
BufferedReader bufferedReader = new BufferedReader(fileReader);
|
2019-04-11 14:45:22 +08:00
|
|
|
properties.load(bufferedReader);
|
2019-10-25 13:59:29 +08:00
|
|
|
OfficeUtils.restorePropertiesFromEnvFormat(properties);
|
2020-05-15 18:09:19 +08:00
|
|
|
cacheEnabled = Boolean.parseBoolean(properties.getProperty("cache.enabled", ConfigConstants.DEFAULT_CACHE_ENABLED));
|
2020-02-18 19:36:15 +08:00
|
|
|
text = properties.getProperty("simText", ConfigConstants.DEFAULT_TXT_TYPE);
|
|
|
|
media = properties.getProperty("media", ConfigConstants.DEFAULT_MEDIA_TYPE);
|
|
|
|
officePreviewType = properties.getProperty("office.preview.type", ConfigConstants.DEFAULT_OFFICE_PREVIEW_TYPE);
|
2020-12-25 18:19:30 +08:00
|
|
|
officePreviewSwitchDisabled = properties.getProperty("office.preview.switch.disabled", ConfigConstants.DEFAULT_OFFICE_PREVIEW_TYPE);
|
2020-02-18 19:36:15 +08:00
|
|
|
ftpUsername = properties.getProperty("ftp.username", ConfigConstants.DEFAULT_FTP_USERNAME);
|
|
|
|
ftpPassword = properties.getProperty("ftp.password", ConfigConstants.DEFAULT_FTP_PASSWORD);
|
|
|
|
ftpControlEncoding = properties.getProperty("ftp.control.encoding", ConfigConstants.DEFAULT_FTP_CONTROL_ENCODING);
|
2019-04-11 14:45:22 +08:00
|
|
|
textArray = text.split(",");
|
|
|
|
mediaArray = media.split(",");
|
2020-02-18 19:36:15 +08:00
|
|
|
baseUrl = properties.getProperty("base.url", ConfigConstants.DEFAULT_BASE_URL);
|
|
|
|
trustHost = properties.getProperty("trust.host", ConfigConstants.DEFAULT_TRUST_HOST);
|
2020-05-14 19:28:21 +08:00
|
|
|
pdfDownloadDisable = properties.getProperty("pdf.download.disable", ConfigConstants.DEFAULT_PDF_DOWNLOAD_DISABLE);
|
2020-05-15 18:09:19 +08:00
|
|
|
ConfigConstants.setCacheEnabledValueValue(cacheEnabled);
|
|
|
|
ConfigConstants.setSimTextValue(textArray);
|
|
|
|
ConfigConstants.setMediaValue(mediaArray);
|
|
|
|
ConfigConstants.setOfficePreviewTypeValue(officePreviewType);
|
|
|
|
ConfigConstants.setFtpUsernameValue(ftpUsername);
|
|
|
|
ConfigConstants.setFtpPasswordValue(ftpPassword);
|
|
|
|
ConfigConstants.setFtpControlEncodingValue(ftpControlEncoding);
|
|
|
|
ConfigConstants.setBaseUrlValue(baseUrl);
|
|
|
|
ConfigConstants.setTrustHostValue(trustHost);
|
2020-12-25 18:19:30 +08:00
|
|
|
ConfigConstants.setOfficePreviewSwitchDisabled(officePreviewSwitchDisabled);
|
2020-05-14 19:28:21 +08:00
|
|
|
ConfigConstants.setPdfDownloadDisableValue(pdfDownloadDisable);
|
2020-05-13 19:40:31 +08:00
|
|
|
setWatermarkConfig(properties);
|
2019-05-16 17:42:35 +08:00
|
|
|
bufferedReader.close();
|
|
|
|
fileReader.close();
|
2019-04-11 14:45:22 +08:00
|
|
|
Thread.sleep(1000L);
|
|
|
|
}
|
|
|
|
} catch (IOException | InterruptedException e) {
|
2019-06-19 14:18:09 +08:00
|
|
|
LOGGER.error("读取配置文件异常", e);
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
}
|
2020-05-13 19:40:31 +08:00
|
|
|
|
|
|
|
private void setWatermarkConfig(Properties properties) {
|
|
|
|
String watermarkTxt = properties.getProperty("watermark.txt", WatermarkConfigConstants.DEFAULT_WATERMARK_TXT);
|
|
|
|
String watermarkXSpace = properties.getProperty("watermark.x.space", WatermarkConfigConstants.DEFAULT_WATERMARK_X_SPACE);
|
|
|
|
String watermarkYSpace = properties.getProperty("watermark.y.space", WatermarkConfigConstants.DEFAULT_WATERMARK_Y_SPACE);
|
|
|
|
String watermarkFont = properties.getProperty("watermark.font", WatermarkConfigConstants.DEFAULT_WATERMARK_FONT);
|
|
|
|
String watermarkFontsize = properties.getProperty("watermark.fontsize", WatermarkConfigConstants.DEFAULT_WATERMARK_FONTSIZE);
|
|
|
|
String watermarkColor = properties.getProperty("watermark.color", WatermarkConfigConstants.DEFAULT_WATERMARK_COLOR);
|
|
|
|
String watermarkAlpha = properties.getProperty("watermark.alpha", WatermarkConfigConstants.DEFAULT_WATERMARK_ALPHA);
|
|
|
|
String watermarkWidth = properties.getProperty("watermark.width", WatermarkConfigConstants.DEFAULT_WATERMARK_WIDTH);
|
|
|
|
String watermarkHeight = properties.getProperty("watermark.height", WatermarkConfigConstants.DEFAULT_WATERMARK_HEIGHT);
|
|
|
|
String watermarkAngle = properties.getProperty("watermark.angle", WatermarkConfigConstants.DEFAULT_WATERMARK_ANGLE);
|
|
|
|
WatermarkConfigConstants.setWatermarkTxtValue(watermarkTxt);
|
|
|
|
WatermarkConfigConstants.setWatermarkXSpaceValue(watermarkXSpace);
|
|
|
|
WatermarkConfigConstants.setWatermarkYSpaceValue(watermarkYSpace);
|
|
|
|
WatermarkConfigConstants.setWatermarkFontValue(watermarkFont);
|
|
|
|
WatermarkConfigConstants.setWatermarkFontsizeValue(watermarkFontsize);
|
|
|
|
WatermarkConfigConstants.setWatermarkColorValue(watermarkColor);
|
|
|
|
WatermarkConfigConstants.setWatermarkAlphaValue(watermarkAlpha);
|
|
|
|
WatermarkConfigConstants.setWatermarkWidthValue(watermarkWidth);
|
|
|
|
WatermarkConfigConstants.setWatermarkHeightValue(watermarkHeight);
|
|
|
|
WatermarkConfigConstants.setWatermarkAngleValue(watermarkAngle);
|
|
|
|
|
|
|
|
}
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
}
|