cn.meteor.common.launch.constants.BootConstants Maven / Gradle / Ivy
package cn.meteor.common.launch.constants;// Copyright (C), Created on 2021-04-02
/**
* Boot 服务常量类
*
* @author ths
* @since 1.0.0
*/
public interface BootConstants {
/** 应用名 */
String APP_NAME = "spring.application.name";
/** 激活配置 */
String PROFILES_ACTIVE = "spring.profiles.active";
/** 后发现的bean会覆盖之前相同名称的bean */
String IS_COVER_BEAN = "spring.main.allow-bean-definition-overriding";
/** 配置日志地址 */
String LOGGING_CONFIG = "logging.config";
/** 数据库实体包 */
String ENTITY_PACKAGE = "mybatis-plus.type-aliases-package";
/** ENC秘钥 */
String JASYPT_PASSWORD = "jasypt.encryptor.password";
}