提取常量配置信息

This commit is contained in:
2026-04-22 11:17:19 +08:00
parent 8f6a5bd3e7
commit 830cd57f41
8 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xujun</groupId>
<artifactId>xtools-app-common</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>xtools-app-common-config</artifactId>
</project>

View File

@@ -0,0 +1,26 @@
package xtools.app.common.config;
/**
* <p>Title : AppCommonConfig</p>
* <p>Description : AppCommonConfig</p>
* <p>DevelopTools : Idea_x64_v2026.1</p>
* <p>DevelopSystem : macOS Sequoia 15.7.5</p>
* <p>Company : org.xujun</p>
*
* @author : XuJun
* @version : 1.0.0
* @date : 2026/4/22 11:04
*/
public class AppCommonConfig {
/**
* 系统日志索引名称
*/
public static final String APP_SYS_LOG_ES_INDEX_NAME = "sys-log";
/**
* 系统缓存前缀
*/
public final static String APP_CACHE_PREFIX = "xtools-app:";
}