spring boot配置信息詳解


# REDIS (Redis 配置)
# 鏈接工廠使用的數據庫索引
spring.redis.database= 0
# Redis服務器主機
spring.redis.host= localhost
# 登陸redis服務器的密碼
spring.redis.password=
# 給定時間池能夠分配的最大鏈接數 使用負值爲無限制
spring.redis.pool.max-active= 8
# 池中「空閒」鏈接的最大數量 使用負值來表示無限數量的空閒鏈接
spring.redis.pool.max-idle= 8
# 鏈接分配在池耗盡以前在拋出異常以前應阻止的最大時間量(以毫秒爲單位) 使用負值無限期地阻止
spring.redis.pool.max-wait= -1
# 定義池中維護的最小空閒鏈接數 此設置只有在正值時纔有效果
spring.redis.pool.min-idle= 0
# redis服務器端口
spring.redis.port= 6379
# redis服務器名稱
spring.redis.sentinel.master=
#
spring.redis.sentinel.nodes=
# 鏈接超時(毫秒)
spring.redis.timeout= 0



# spring 視圖分解器 配置
# 啓用後退解析支持
spring.mobile.devicedelegatingviewresolver.enable-fallback= false
# 啓用設備視圖解析器
spring.mobile.devicedelegatingviewresolver.enabled= false
# 前綴,用於查看移動設備的名稱
spring.mobile.devicedelegatingviewresolver.mobile-prefix= mobile/
# 後綴,附加到查看移動設備的名稱
spring.mobile.devicedelegatingviewresolver.mobile-suffix=
# 前綴,用於查看普通設備的名稱
spring.mobile.devicedelegatingviewresolver.normal-prefix=
# 後綴,附加到查看普通設備的名稱
spring.mobile.devicedelegatingviewresolver.normal-suffix=
# 前綴,用於查看平板設備的名稱
spring.mobile.devicedelegatingviewresolver.tablet-prefix= tablet/
# 後綴,附加到查看平板電腦設備的名稱
spring.mobile.devicedelegatingviewresolver.tablet-suffix=


# 移動網站首選項 (站點首選項自動配置)
# 啓用SitePreferenceHandler
spring.mobile.sitepreference.enabled= true


# MUSTACHE模板(Mustache AutoConfiguration)
# 啓用模板緩存
spring.mustache.cache= false
# 模板編碼
spring.mustache.charset= UTF-8
# 檢查模板位置是否存在
spring.mustache.check-template-location= true
# Content-Type值
spring.mustache.content-type= text/html
# 啓用此技術的MVC視圖分辨率
spring.mustache.enabled= true
# 前綴應用於模板名稱
spring.mustache.prefix= classpath:/templates/
# 後綴應用於模板名稱
spring.mustache.suffix= .html
# 能夠解決的視圖名稱的白名單
spring.mustache.view-names=


# SPRING MVC (Web Mvc 配置)
# 異步請求處理超時以前的時間量(以毫秒爲單位)
spring.mvc.async.request-timeout=
# 要使用的日期格式 例如`dd / MM / yyyy`
spring.mvc.date-format=
# 發送TRACE請求到FrameworkServlet doService方法
spring.mvc.dispatch-trace-request= false
# 發送OPTIONS請求到FrameworkServlet doService方法
spring.mvc.dispatch-options-request= false
# 啓用favicon.ico的解析
spring.mvc.favicon.enabled= true
# 若是在重定向方案期間應該忽略「默認」模型的內容
spring.mvc.ignore-default-model-on-redirect= true
# 要使用的區域設置
spring.mvc.locale=
# 將文件擴展名映射到內容協商的媒體類型
spring.mvc.media-types.*=
# 消息代碼格式策略 例如`PREFIX_ERROR_CODE`
spring.mvc.message-codes-resolver-format=
# 用於靜態資源的路徑模式
spring.mvc.static-path-pattern= /**
# 若是沒有發現處理程序來處理請求,則應拋出「NoHandlerFoundException」
spring.mvc.throw-exception-if-no-handler-found= false
# Spring MVC視圖前綴
spring.mvc.view.prefix=
# Spring MVC視圖後綴
spring.mvc.view.suffix=


#SPRING RESOURCES HANDLING(ResourceProperties)資源處理
spring.resources.add-mappings = true #啓用默認資源處理
spring.resources.cache-period = #由資源處理程序提供的資源的緩存期,以秒爲單位
spring.resources.chain.cache = true #在資源鏈中啓用緩存
spring.resources.chain.enabled = #啓用Spring資源處理鏈默認狀況下禁用,除非啓用了至少一個策略
spring.resources.chain.html-application-cache = false #啓用HTML5應用程序緩存清單重寫
spring.resources.chain.strategy.content.enabled = false #啓用內容版本策略
spring.resources.chain.strategy.content.paths = / ** #應用於版本策略的模式的逗號分隔列表
spring.resources.chain.strategy.fixed.enabled = false #啓用固定版本策略
spring.resources.chain.strategy.fixed.paths = #應用於版本策略的逗號分隔的模式列表
spring.resources.chain.strategy.fixed.version = #用於版本策略的版本字符串
spring.resources.static-locations = classpath:/ META-INF / resources /,classpath:/ resources /,classpath:/ static /,classpath:/ public / #靜態資源的位置


#SPRING SOCIAL(SocialWebAutoConfiguration)集羣
spring.social.auto-connection-views = false #啓用支持的提供程序的鏈接狀態視圖


#SPRING SOCIAL FACEBOOK(FacebookAutoConfiguration)
spring.social.facebook.app-id = #您的應用程序的Facebook應用程序ID
spring.social.facebook.app-secret = #你的應用程序的Facebook應用程序密碼


#SPRING SOCIAL LINKEDIN(LinkedInAutoConfiguration)
spring.social.linkedin.app-id = #您的應用程序的LinkedIn應用程序ID
spring.social.linkedin.app-secret = #您的應用程序的LinkedIn App Secret


#SPRING SOCIAL TWITTER(TwitterAutoConfiguration)
spring.social.twitter.app-id = #你的應用程序的Twitter應用程序ID
spring.social.twitter.app-secret = #你的應用程序的Twitter App Secret


#THYMELEAF Thymeleaf模板引擎配置
spring.thymeleaf.cache = true #啓用模板緩存
spring.thymeleaf.check-template-location = true #檢查模板位置是否存在
spring.thymeleaf.content-type = text / html #Content-Type值
spring.thymeleaf.enabled = true #啓用MVC Thymeleaf視圖分辨率
spring.thymeleaf.encoding = UTF-8 #模板編碼
spring.thymeleaf.excluded-view-names = #應該從解決方案中排除的視圖名稱的逗號分隔列表
spring.thymeleaf.mode = HTML5 #應用於模板的模板模式另請參見StandardTemplateModeHandlers
spring.thymeleaf.prefix = classpath:/ templates / #在構建URL時預先查看名稱的前綴
spring.thymeleaf.suffix = .html #構建URL時附加查看名稱的後綴
spring.thymeleaf.template-resolver-order = #鏈中模板解析器的順序
spring.thymeleaf.view-names = #能夠解析的視圖名稱的逗號分隔列表


#VELOCITY TEMPLATES(VelocityAutoConfiguration)
spring.velocity.allow-request-override = false #設置是否容許HttpServletRequest屬性覆蓋(隱藏)控制器生成的同名的模型屬性
spring.velocity.allow-session-override = false #設置是否容許HttpSession屬性重寫(隱藏)控制器生成的同名的模型屬性
spring.velocity.cache = #啓用模板緩存
spring.velocity.charset = UTF-8 #模板編碼
spring.velocity.check-template-location = true #檢查模板位置是否存在
spring.velocity.content-type = text / html #Content-Type值
spring.velocity.date-tool-attribute = #在視圖的Velocity上下文中公開的DateTool輔助對象的名稱
spring.velocity.enabled = true #啓用此技術的MVC視圖分辨率
spring.velocity.expose-request-attributes = false #設置在與模板合併以前是否應將全部請求屬性添加到模型中
spring.velocity.expose-session-attributes = false #設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中
spring.velocity.expose-spring-macro-helpers = true #設置是否公開一個RequestContext供Spring Spring的宏庫使用,名稱爲「springMacroRequestContext」
spring.velocity.number-tool-attribute = #在視圖的Velocity上下文中公開的NumberTool幫助對象的名稱
spring.velocity.prefer-file-system-access = true #首選文件系統訪問模板加載文件系統訪問能夠對模板更改進行熱檢測
spring.velocity.prefix = #前綴,用於在構建URL時查看名稱
spring.velocity.properties* = #附加速度屬性
spring.velocity.request-context-attribute = #全部視圖的RequestContext屬性的名稱
spring.velocity.resource-loader-path = classpath:/ templates / #模板路徑
spring.velocity.suffix = .vm #構建URL時附加到查看名稱的後綴
spring.velocity.toolbox-config-location = #Velocity Toolbox配置位置例如`/ WEB-INF / toolbox.xml'
spring.velocity.view-names = #能夠解決的視圖名稱的白名單


#----------------------------------------
#安全屬性
#----------------------------------------
#SECURITY(SecurityProperties)
security.basic.authorize-mode = role #應用安全受權模式
security.basic.enabled = true #啓用基自己份驗證
security.basic.path = / ** #安全路徑的逗號分隔列表
security.basic.realm = Spring #HTTP基本的領域名稱
security.enable-csrf = false #啓用跨站點請求僞造支持
security.filter-order = 0 #安全過濾器連鎖訂單
security.headers.cache = true #啓用緩存控制HTTP頭
security.headers.content-type = true# 啓用「X-Content-Type-Options」頭
security.headers.frame = true #啓用「X-Frame-Options」標題
security.headers.hsts = # HTTP嚴格傳輸安全(HSTS)模式(無,域,所有)
security.headers.xss = true #啓用跨站點腳本(XSS)保護
security.ignored = #從默認安全路徑中排除的路徑的逗號分隔列表
security.require-ssl = false #爲全部請求啓用安全通道
security.sessions = stateless #會話建立策略(永遠不會,if_required,無狀態)
security.user.name = user #默認用戶名
security.user.password = #默認用戶名的密碼默認狀況下,啓動時會記錄隨機密碼
security.user.role = USER #爲默認用戶名授予角色


#SECURITY OAUTH2 CLIENT(OAuth2ClientProperties
security.oauth2.client.client-id = #OAuth2客戶端ID
security.oauth2.client.client-secret = #OAuth2客戶機密碼默認生成隨機密碼


#SECURITY OAUTH2 RESOURCES(ResourceServerProperties
security.oauth2.resource.id = #資源的標識符
security.oauth2.resource.jwt.key-uri = #JWT令牌的URI若是值不可用而且密鑰是公共的,能夠設置
security.oauth2.resource.jwt.key-value = #JWT令牌的驗證密鑰能夠是對稱祕密或PEM編碼的RSA公鑰
security.oauth2.resource.prefer-token-info = true #使用令牌信息,能夠設置爲false以使用用戶信息
security.oauth2.resource.service-id = resource #
security.oauth2.resource.token-info-uri = #令牌解碼端點的URI
security.oauth2.resource.token-type = #使用userInfoUri時發送的令牌類型
security.oauth2.resource.user-info-uri = #用戶端點的URI


#SECURITY OAUTH2 SSO(OAuth2SsoProperties
security.oauth2.sso.filter-order = #若是不提供顯式的WebSecurityConfigurerAdapter,則應用過濾器順序
security.oauth2.sso.login-path = / login #登陸頁面的路徑,即觸發重定向到OAuth2受權服務器的路徑




# ----------------------------------------
# DATA PROPERTIES 數據性能
# ----------------------------------------


# FLYWAY (FlywayProperties)
flyway.baseline-description = #
flyway.baseline-version = 1 #版本開始遷移
flyway.baseline-on-migrate = #
flyway.check-location = false #檢查遷移腳本位置是否存在
flyway.clean-on-validation-error = #
flyway.enabled = true #啓用飛行路線
flyway.encoding = #
flyway.ignore-failed-future-migration = #
flyway.init-sqls = #執行SQL語句,以便在獲取鏈接後當即初始化鏈接
flyway.locations = classpath:db / migration #遷移腳本的位置
flyway.out-of-order = #若是您但願Flyway建立本身的DataSource,則須要使用#path密碼
flyway.placeholder-prefix = #
flyway.placeholder-replacement = #
flyway.placeholder-suffix = #
flyway.placeholders* = #
flyway.schemas = #schemas來更新
flyway.sql-migration-prefix = V #
flyway.sql-migration-separator = #
flyway.sql-migration-suffix = .sql #
flyway.table = #
flyway.url = #要遷移的數據庫的JDBC url若是未設置,則使用主配置的數據源
flyway.user = #登陸要遷移的數據庫的用戶
flyway.validate-on-migrate = #


# LIQUIBASE (LiquibaseProperties)
liquibase.change-log = classpath:/db/changelog/db.changelog-master.yaml #更改日誌配置路徑
liquibase.check-change-log-location = true #檢查更改日誌位置是否存在
liquibase.contexts = #使用逗號分隔的運行時上下文列表
liquibase.default-schema = #默認數據庫模式
liquibase.drop-first = false #首先刪除數據庫模式
liquibase.enabled = true #啓用liquidibase支持
liquibase.labels = #使用逗號分隔的運行時標籤列表
liquibase.parameters* = #更改日誌參數
liquibase.password = #登陸要遷移的數據庫的密碼
liquibase.url = #要遷移的數據庫的JDBC url 若是未設置,則使用主配置的數據源
liquibase.user = #登陸要遷移的數據庫的用戶



# DAO (PersistenceExceptionTranslationAutoConfiguration)
spring.dao.exceptiontranslation.enabled= true # 啓用持久異常翻譯後處理器


# CASSANDRA (CassandraProperties)
spring.data.cassandra.cluster-name = #Cassandra羣集的名稱
spring.data.cassandra.compression = #由Cassandra二進制協議支持的壓縮
spring.data.cassandra.connect-timeout-millis = #套接字選項:鏈接超時
spring.data.cassandra.consistency-level = #查詢一致性級別
spring.data.cassandra.contact-points = localhost #集羣節點地址的逗號分隔列表
spring.data.cassandra.fetch-size = #查詢默認的抓取大小
spring.data.cassandra.keyspace-name = #要使用的密鑰空間名稱
spring.data.cassandra.load-balancing-policy = #負載均衡策略的類名
spring.data.cassandra.port = #Cassandra服務器端口
spring.data.cassandra.password = #登陸服務器的密碼
spring.data.cassandra.read-timeout-millis = #套接字選項:讀取超時
spring.data.cassandra.reconnection-policy = #從新鏈接策略類
spring.data.cassandra.retry-policy = #重試策略的類名
spring.data.cassandra.serial-consistency-level = #查詢串行一致性級別
spring.data.cassandra.ssl = false #啓用SSL支持
spring.data.cassandra.username = #登陸用戶的服務器


# ELASTICSEARCH (ElasticsearchProperties)
spring.data.elasticsearch.cluster-name = elasticsearch #彈性搜索集羣名稱
spring.data.elasticsearch.cluster-nodes = #集羣節點地址的逗號分隔列表 若是未指定,則啓動客戶端節點
spring.data.elasticsearch.properties* = #用於配置客戶端的其餘屬性
spring.data.elasticsearch.repositories.enabled = true #啓用Elasticsearch存儲庫


# MONGODB (MongoProperties)
spring.data.mongodb.authentication-database = #驗證數據庫名稱
spring.data.mongodb.database = test #數據庫名稱
spring.data.mongodb.field-naming-strategy = #要使用的FieldNamingStrategy的徹底限定名稱
spring.data.mongodb.grid-fs-database = #GridFS數據庫名稱
spring.data.mongodb.host = localhost #Mongo服務器主機
spring.data.mongodb.password = #登陸mongo服務器的密碼
spring.data.mongodb.port = 27017 #Mongo服務器端口
spring.data.mongodb.repositories.enabled = true #啓用Mongo存儲庫
spring.data.mongodb.uri = mongodb:// localhost / test #Mongo數據庫URI 設置時,主機和端口將被忽略
spring.data.mongodb.username = #登陸mongo服務器的用戶


# DATA REST (RepositoryRestProperties)
spring.data.rest.base-path = #由Spring Data REST用於公開存儲庫資源的基本路徑
spring.data.rest.default-page-size = #頁面的默認大小
spring.data.rest.enable-enum-translation = #經過Spring Data REST默認資源包啓用枚舉值轉換
spring.data.rest.limit-param-name = #指示一次返回多少結果的URL查詢字符串參數的名稱
spring.data.rest.max-page-size = #最大頁面大小
spring.data.rest.page-param-name = #指示要返回的頁面的URL查詢字符串參數的名稱
spring.data.rest.return-body-on-create = #建立一個實體後返回響應體
spring.data.rest.return-body-on-update = #更新實體後返回響應體
spring.data.rest.sort-param-name = #指示排序結果的方向的URL查詢字符串參數的名稱


# SOLR (SolrProperties)
spring.data.solr.host = http://127.0.0.1:8983/solr #Solr主機 若是設置了「zk-host」,則被忽略
spring.data.solr.repositories.enabled = true #啓用Solr存儲庫
spring.data.solr.zk-host = #ZooKeeper主機地址,格式爲HOST:PORT


# 數據源 配置 (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.continue-on-error = false #初始化數據庫時發生錯誤時不要中止
spring.datasource.data = #Data(DML)腳本資源引用
spring.datasource.driver-class-name = #JDBC驅動程序的徹底限定名稱默認狀況下,根據URL自動檢測
spring.datasource.initialize = true #使用'data.sql'填充數據庫
spring.datasource.jmx-enabled = false #啓用JMX支持(若是由底層池提供)
spring.datasource.jndi-name = #數據源的JNDI位置設置時,類,網址,用戶名和密碼將被忽略
spring.datasource.max-active = #例如100
spring.datasource.max-idle = #例如8
spring.datasource.max等待=
spring.datasource.min-evictable空閒時間-米利斯=
spring.datasource.min-idle = 8
spring.datasource.name = testdb #數據源的名稱
spring.datasource.password = #登陸數據庫的密碼
spring.datasource.platform = all #在資源模式(schema - $ {platform} .sql)中使用的平臺
spring.datasource.schema = #Schema(DDL)腳本資源引用
spring.datasource.separator =; #語句分隔符在SQL初始化腳本中
spring.datasource.sql-script-encoding = #SQL腳本編碼
spring.datasource.test-on-borrow = #例如`false`
spring.datasource.test-on-return = #例如`false`
spring.datasource.test-while-idle = #
spring.datasource.time-between-eviction-runs-millis = 1
spring.datasource.type = #要使用的鏈接池實現的徹底限定名稱默認狀況下,它是從類路徑自動檢測的
spring.datasource.url = #數據庫的JDBC url
spring.datasource.username=
spring.datasource.validation-query=


# H2 Web Console (H2ConsoleProperties)
spring.h2.console.enabled = false #啓用控制檯
spring.h2.console.path = / h2-console #控制檯可用的路徑


# JOOQ (JooqAutoConfiguration)
spring.jooq.sql-dialect= # 與配置的數據源通訊時使用的SQLDialect JOOQ 例如`POSTGRES`


# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
spring.data.jpa.repositories.enabled = true #啓用JPA存儲庫
spring.jpa.database = #目標數據庫進行操做,默認狀況下自動檢測可使用「databasePlatform」屬性設置
spring.jpa.database-platform = #要運行的目標數據庫的名稱,默認狀況下自動檢測可使用「數據庫」枚舉來設置
spring.jpa.generate-ddl = false #啓動時初始化模式
spring.jpa.hibernate.ddl-auto = #DDL模式這其實是「hibernate.hbm2ddl.auto」屬性的快捷方式使用嵌入式數據庫時默認爲「建立刪除」,不然爲「否」
spring.jpa.hibernate.naming-strategy = #命名策略徹底限定名
spring.jpa.open-in-view = true #註冊OpenEntityManagerInViewInterceptor將JPA EntityManager綁定到線程以進行請求的整個處理
spring.jpa.properties* = #在JPA提供程序上設置的其餘本機屬性
spring.jpa.show-sql = false #啓用SQL語句的日誌記錄


# JTA (JtaAutoConfiguration)
spring.jta* = #技術特定配置
spring.jta.log-dir = #Transaction logs目錄


# ATOMIKOS
spring.jta.atomikos.connectionfactory.borrow-connection-timeout = 30 #從池中借用鏈接的超時(以秒爲單位)
spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag = true #建立會話時是否忽略事務標誌
spring.jta.atomikos.connectionfactory.local-transaction-mode = false #是否須要本地事務
spring.jta.atomikos.connectionfactory.maintenance-interval = 60 #池的維護線程運行之間的時間(以秒爲單位)
spring.jta.atomikos.connectionfactory.max-idle-time = 60 #從池中清除鏈接以後的時間(以秒爲單位)
spring.jta.atomikos.connectionfactory.max-lifetime = 0 #在被破壞以前能夠將鏈接合併的時間(以秒爲單位) 0表示無限制
spring.jta.atomikos.connectionfactory.max-pool-size = 1 #池的最大大小
spring.jta.atomikos.connectionfactory.min-pool-size = 1 #池的最小大小
spring.jta.atomikos.connectionfactory.reap-timeout = 0 #借用鏈接的收穫超時(以秒爲單位) 0表示無限制
spring.jta.atomikos.connectionfactory.unique-resource-name = jmsConnectionFactory #用於在恢復期間標識資源的惟一名稱
spring.jta.atomikos.datasource.borrow-connection-timeout = 30 #從池中借出鏈接的超時(秒)
spring.jta.atomikos.datasource.default-isolation-level = #池提供的鏈接的默認隔離級別
spring.jta.atomikos.datasource.login-timeout = #用於創建數據庫鏈接的超時(以秒爲單位)
spring.jta.atomikos.datasource.maintenance-interval = 60 #池的維護線程運行之間的時間(以秒爲單位)
spring.jta.atomikos.datasource.max-idle-time = 60 #從池中清除鏈接以後的時間(以秒爲單位)
spring.jta.atomikos.datasource.max-lifetime = 0 #在被破壞以前能夠將鏈接合併的時間(以秒爲單位) 0表示無限制
spring.jta.atomikos.datasource.max-pool-size = 1 #池的最大大小
spring.jta.atomikos.datasource.min-pool-size = 1 #池的最小大小
spring.jta.atomikos.datasource.reap-timeout = 0 #借用鏈接的收穫超時(以秒爲單位) 0表示無限制
spring.jta.atomikos.datasource.test-query = #用於在返回鏈接以前驗證鏈接的SQL查詢或語句
spring.jta.atomikos.datasource.unique-resource-name = dataSource #用於在恢復期間識別資源的惟一名稱


# BITRONIX
spring.jta.bitronix.connectionfactory.acquire-increment = 1 #生成池時要建立的鏈接數
spring.jta.bitronix.connectionfactory.acquisition-interval = 1 #在獲取無效鏈接後再次嘗試獲取鏈接以前等待的時間(以秒爲單位)
spring.jta.bitronix.connectionfactory.acquisition-timeout = 30 #從池中獲取鏈接的超時(以秒爲單位)
spring.jta.bitronix.connectionfactory.allow-local-transactions = true #事務管理器是否容許混合XA和非XA事務
spring.jta.bitronix.connectionfactory.apply-transaction-timeout = false #當XAResource被登記時,是否應該設置事務超時
spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled = true #資源是否應該被自動登記和刪除
spring.jta.bitronix.connectionfactory.cache-producer-consumer = true #是否生產和消費者應該被緩存
spring.jta.bitronix.connectionfactory.defer-connection-release = true #提供程序是否能夠在同一鏈接上運行許多事務,並支持事務交織
spring.jta.bitronix.connectionfactory.ignore-recovery-failures = false #是否應忽略恢復失敗
spring.jta.bitronix.connectionfactory.max-idle-time = 60 #從池中清除鏈接以後的時間(以秒爲單位)
spring.jta.bitronix.connectionfactory.max-pool-size = 10 #池的最大大小 0表示無限制
spring.jta.bitronix.connectionfactory.min-pool-size = 0 #池的最小大小
spring.jta.bitronix.connectionfactory.password = #用於鏈接到JMS提供程序的密碼
spring.jta.bitronix.connectionfactory.share-transaction-connections = false #ACCESSIBLE狀態中的鏈接是否能夠在事務的上下文中共享
spring.jta.bitronix.connectionfactory.test-connections = true #從池中獲取鏈接是否應該進行測試
spring.jta.bitronix.connectionfactory.two-pc-ordering-position = 1 #在兩階段提交期間該資源應該採起的位置(始終爲Integer.MIN_VALUE,始終爲Integer.MAX_VALUE)
spring.jta.bitronix.connectionfactory.unique-name = jmsConnectionFactory #用於在恢復期間標識資源的惟一名稱
spring.jta.bitronix.connectionfactory.use-tm-join = true啓動XAResource時是否應使用TMJOIN
spring.jta.bitronix.connectionfactory.user = #用於鏈接到JMS提供者的用戶
spring.jta.bitronix.datasource.acquire-increment = 1 #生成池時要建立的鏈接數
spring.jta.bitronix.datasource.acquisition-interval = 1 #在獲取無效鏈接後再嘗試獲取鏈接以前等待的時間(以秒爲單位)
spring.jta.bitronix.datasource.acquisition-timeout = 30 #從池中獲取鏈接的超時(以秒爲單位)
spring.jta.bitronix.datasource.allow-local-transactions = true #事務管理器是否容許混合XA和非XA事務
spring.jta.bitronix.datasource.apply-transaction-timeout = false #當XAResource被登記時,是否應該設置事務超時
spring.jta.bitronix.datasource.automatic-enlisting-enabled = true #資源是否應該被登記和自動刪除
spring.jta.bitronix.datasource.cursor-holdability = #鏈接的默認遊標保持性
spring.jta.bitronix.datasource.defer-connection-release = true #數據庫是否能夠在同一鏈接上運行許多事務,並支持事務交織
spring.jta.bitronix.datasource.enable-jdbc4-connection-test = #從池中獲取鏈接時是否調用Connection.isValid()
spring.jta.bitronix.datasource.ignore-recovery-failures = false #是否應忽略恢復失敗
spring.jta.bitronix.datasource.isolation-level = #鏈接的默認隔離級別
spring.jta.bitronix.datasource.local-auto-commit = #本地事務的默認自動提交模式
spring.jta.bitronix.datasource.login-timeout = #用於創建數據庫鏈接的超時(以秒爲單位)
spring.jta.bitronix.datasource.max-idle-time = 60 #從池中清除鏈接以後的時間(以秒爲單位)
spring.jta.bitronix.datasource.max-pool-size = 10 #池的最大大小 0表示無限制
spring.jta.bitronix.datasource.min-pool-size = 0 #池的最小大小
spring.jta.bitronix.datasource.prepared-statement-cache-size = 0 #準備好的語句高速緩存的目標大小 0禁用緩存
spring.jta.bitronix.datasource.share-transaction-connections = false #ACCESSIBLE狀態下的鏈接是否能夠在事務的上下文中共享
spring.jta.bitronix.datasource.test-query = #用於在返回鏈接以前驗證鏈接的SQL查詢或語句
spring.jta.bitronix.datasource.two-pc-ordering-position = 1 #在兩階段提交期間該資源應該採起的位置(始終爲Integer.MIN_VALUE,始終爲Integer.MAX_VALUE)
spring.jta.bitronix.datasource.unique-name = dataSource #用於在恢復期間標識資源的惟一名稱
spring.jta.bitronix.datasource.use-tm-join = true啓動XAResource時是否應使用TMJOIN



# EMBEDDED MONGODB (EmbeddedMongoProperties)
spring.mongodb.embedded.features = SYNC_DELAY #啓用功能的逗號分隔列表
spring.mongodb.embedded.version = 2.6.10 #Mongo使用版本


# ----------------------------------------
# 整合屬性
# ----------------------------------------

#ACTIVEMQ(ActiveMQProperties)
spring.activemq.broker-url = #ActiveMQ代理的URL 默認自動生成 例如`tcp:// localhost:61616`
spring.activemq.in-memory = true #指定默認代理URL是否應在內存中 若是指定了一個顯式代理,則被忽略
spring.activemq.password = #登陸密碼的代理
spring.activemq.pooled = false #指定是否建立PooledConnectionFactory而不是常規的ConnectionFactory
spring.activemq.user = #代理登陸用戶


# ARTEMIS (ArtemisProperties)
spring.artemis.embedded.cluster-password = #羣集密碼 默認狀況下隨機生成
spring.artemis.embedded.data-directory = #日誌文件目錄 若是持久性被關閉,則不須要
spring.artemis.embedded.enabled = true #若是Artemis服務器API可用,啓用嵌入式模式
spring.artemis.embedded.persistent = false #啓用持久存儲
spring.artemis.embedded.queues = #啓動時要建立的隊列的逗號分隔列表
spring.artemis.embedded.server-id = #服務器ID 默認狀況下,使用自動遞增的計數器
spring.artemis.embedded.topics = #啓動時要建立的主題的逗號分隔列表
spring.artemis.host = localhost #Artemis代理主機
spring.artemis.mode = #Artemis部署模式,默認狀況下自動檢測 能夠顯式設置爲「native」或「embedded」
spring.artemis.port = 61616 #Artemis 中間件端口


# SPRING BATCH(Batch 配置)
spring.batch.initializer.enabled = true #若是須要,在啓動時建立所需的批處理表
spring.batch.job.enabled = true #在啓動時執行上下文中的全部Spring批處理做業
spring.batch.job.names = #在啓動時執行的做業名稱的逗號分隔列表(例如`job1,job2`) 默認狀況下,執行在上下文中找到的全部做業
spring.batch.schema = classpath:org / springframework / batch / core / schema - @@ platform @@sql #用於初始化數據庫模式的SQL文件的路徑
spring.batch.table-prefix = #全部批次元數據表的表前綴


# HORNETQ (HornetQ 配置)
spring.hornetq.embedded.cluster-password = #集羣密碼 默認狀況下隨機生成
spring.hornetq.embedded.data-directory = #日誌文件目錄 若是持久性被關閉,則不須要
spring.hornetq.embedded.enabled = true #若是HornetQ服務器API可用,啓用嵌入式模式
spring.hornetq.embedded.persistent = false #啓用持久存儲
spring.hornetq.embedded.queues = #啓動時要建立的隊列的逗號分隔列表
spring.hornetq.embedded.server-id = #服務器ID 默認狀況下,使用自動遞增的計數器
spring.hornetq.embedded.topics = #在啓動時建立的主題的逗號分隔列表
spring.hornetq.host = localhost #HornetQ代理主機
spring.hornetq.mode = #HornetQ部署模式,默認狀況下自動檢測 能夠顯式設置爲「native」或「embedded」
spring.hornetq.port = 5445 #HornetQ代理端口


# JMS (Jms 配置)
# 鏈接工廠JNDI名稱 設置時,優先於其餘鏈接工廠自動配置
spring.jms.jndi-name=
# 容器的確認模式 默認狀況下,監聽器被自動確認處理
spring.jms.listener.acknowledge-mode=
# 啓動時自動啓動容器
spring.jms.listener.auto-startup= true
# 最小併發消費者數
spring.jms.listener.concurrency=
# 最大併發消費者數
spring.jms.listener.max-concurrency=
# 指定默認的目的地類型是否爲主題
spring.jms.pub-sub-domain= false


# RABBIT (Rabbit 配置)
# 客戶端應鏈接到的逗號分隔的地址列表
spring.rabbitmq.addresses =
spring.rabbitmq.dynamic = true # 建立一個AmqpAdmin bean
spring.rabbitmq.host = localhost# RabbitMQ主機
spring.rabbitmq.listener.acknowledge-mode = # 容器的確認模式
spring.rabbitmq.listener.auto-startup = true# 啓動時自動啓動容器
spring.rabbitmq.listener.concurrency = # 最少消費者數
spring.rabbitmq.listener.max-concurrency = # 最大消費者數
spring.rabbitmq.listener.prefetch = # 在單個請求中要處理的消息數它應該大於或等於事務大小(若是使用)
spring.rabbitmq.listener.transaction-size = # 在事務中要處理的消息數爲了得到最佳結果,它應該小於或等於預取計數
spring.rabbitmq.password = # 登陸以對代理進行身份驗證
spring.rabbitmq.port = 5672# RabbitMQ端口
spring.rabbitmq.requested-heartbeat = # 請求的心跳超時,以秒爲單位;零爲無
spring.rabbitmq.ssl.enabled = false# 啓用SSL支持
spring.rabbitmq.ssl.key-store = # 保存SSL證書的密鑰存儲區的路徑
spring.rabbitmq.ssl.key-store-password = # 用於訪問密鑰庫的密碼
spring.rabbitmq.ssl.trust-store = # 保存SSL證書的Trust存儲
spring.rabbitmq.ssl.trust-store-password = # 用於訪問信任存儲的密碼
spring.rabbitmq.username = # 登陸用戶對代理進行身份驗證
spring.rabbitmq.virtual-host = # 鏈接到代理時使用的虛擬主機


# 端點配置(EndpointCorsProperties)
# 設置是否支持憑據 未設置時,不支持憑據
endpoints.cors.allow-credentials=
# 在請求中容許的頭文件逗號分隔列表 '*'容許全部標題
endpoints.cors.allowed-headers=
# 逗號分隔的容許的方法列表 '*'容許全部方法
endpoints.cors.allowed-methods= GET
# 逗號分隔的起始列表容許 '*'容許全部來源 未設置時,禁用CORS支持
endpoints.cors.allowed-origins=
# 包含在響應中的標題的逗號分隔列表
endpoints.cors.exposed-headers=
# 客戶端能夠緩存飛行前請求的響應時間(秒)
endpoints.cors.max-age= 1800


# JMX ENDPOINT (EndpointMBeanExportProperties) (端點MBean導出屬性)
# JMX域名 若是設置爲'spring.jmx.default-domain'的值初始化
endpoints.jmx.domain=
# 啓用全部端點的JMX導出
endpoints.jmx.enabled= true
# 附加靜態屬性以附加到表示端點的MBean的全部對象名稱
endpoints.jmx.static-names=
# 確保在發生衝突時修改ObjectNames
endpoints.jmx.unique-names= false


# JOLOKIA JOLOKIA 配置
# 見Jolokia手冊
jolokia.config.*=


# 管理HTTP服務器(管理服務器屬性)
# 在每一個響應中添加「X-Application-Context」HTTP頭
management.add-application-context-header= true
# 管理端點應綁定到的網絡地址
management.address=
# 管理端點上下文路徑 例如`/ actuator`
management.context-path=
# 管理端點HTTP端口 默認使用與應用程序相同的端口
management.port=
# 啓用安全性
management.security.enabled= true
# 訪問管理端點所需的角色
management.security.role= ADMIN
# 會話建立策略使用(always,never,if_required,stateless)(老是,永遠,if_required,無狀態)
management.security.sessions= stateless


# HEALTH INDICATORS (previously health.*)
# 啓用數據庫運行情況檢查
management.health.db.enabled= true
# 啓用默認的健康指標
management.health.defaults.enabled= true
# 啓用磁盤空間運行情況檢查
management.health.diskspace.enabled= true
# 用於計算可用磁盤空間的路徑
management.health.diskspace.path=
# 應該可用的最小磁盤空間(以字節爲單位)
management.health.diskspace.threshold= 0
# 啓用彈性搜索健康檢查
management.health.elasticsearch.enabled= true
# 逗號分隔的索引名稱
management.health.elasticsearch.indices=
# 等待羣集響應的時間(以毫秒爲單位)
management.health.elasticsearch.response-timeout= 100
# 啓用JMS健康檢查
management.health.jms.enabled= true
# 啓用郵件運行情況檢查
management.health.mail.enabled= true
# 啓用MongoDB健康檢查
management.health.mongo.enabled= true
# 啓用RabbitMQ運行情況檢查
management.health.rabbit.enabled= true
# 啓用Redis健康檢查
management.health.redis.enabled= true
# 啓用Solr運行情況檢查
management.health.solr.enabled= true
# 按照嚴重性的順序,以逗號分隔的健康狀態列表
management.health.status.order= DOWN, OUT_OF_SERVICE, UNKNOWN, UP


# TRACING ((TraceProperties) 跟蹤性能
# 跟蹤中包含的項目
management.trace.include= request-headers,response-headers,errors


# 遠程 shell配置
# 驗證類型 根據環境自動檢測
shell.auth= simple
# JAAS域
shell.auth.jaas.domain= my-domain
# 驗證密鑰的路徑 這應該指向一個有效的「.pem」文件
shell.auth.key.path=
# 登陸用戶
shell.auth.simple.user.name= user
# 登陸用戶的密碼
shell.auth.simple.user.password=
# 登陸到CRaSH控制檯的所需的角色,以逗號分隔列表
shell.auth.spring.roles= ADMIN
# 用於查找命令的模式
shell.command-path-patterns= classpath*:/commands/**,classpath*:/crash/commands/**
# 掃描更改並在必要時更新命令(以秒爲單位)
shell.command-refresh-interval= -1
# 用於查找配置的模式
shell.config-path-patterns= classpath*:/crash/*
# 逗號分隔的要禁用的命令列表
shell.disabled-commands= jpa*,jdbc*,jndi*
# 禁用逗號分隔的插件列表 默認狀況下,根據環境禁用某些插件
shell.disabled-plugins=
# 用戶被提示再次登陸後的毫秒數
shell.ssh.auth-timeout =
# 啓用CRaSH SSH支持
shell.ssh.enabled= true
# 未使用的鏈接關閉以後的毫秒數
shell.ssh.idle-timeout =
# SSH服務器密鑰路徑
shell.ssh.key-path=
# SSH端口
shell.ssh.port= 2000
# 啓用CRaSH telnet支持 若是TelnetPlugin可用,默認狀況下啓用
shell.telnet.enabled= false
# Telnet端口
shell.telnet.port= 5000


# GIT 信息配置
# 生成的git信息屬性文件的資源引用
spring.git.properties=


# 標準出口
# 模式,告訴聚合器如何從源存儲庫中的鍵
spring.metrics.export.aggregate.key-pattern=
# 全局存儲庫的前綴若是處於活動狀態
spring.metrics.export.aggregate.prefix=
# 導出刻度之間以毫秒爲單位的延遲 按照這種延遲,指標將按計劃導出到外部來源
spring.metrics.export.delay-millis= 5000
# 標誌以啓用度量標準導出(假設MetricWriter可用)
spring.metrics.export.enabled= true
# 要排除的度量名稱列表 應用後包括
spring.metrics.export.excludes=
# 要包含的度量名稱的模式列表
spring.metrics.export.includes=
# redis存儲庫導出的密鑰(若是活動)
spring.metrics.export.redis.key= keys.spring.metrics
# redis存儲庫的前綴 若是處於活動狀態
spring.metrics.export.redis.prefix= spring.metrics
# 標誌基於不導出不變的度量值來關閉任何可用的優化
spring.metrics.export.send-latest=
# 主機的statsd服務器接收導出的指標
spring.metrics.export.statsd.host=
# 接收導出指標的statsd服務器端口
spring.metrics.export.statsd.port= 8125
# statsd導出指標的前綴
spring.metrics.export.statsd.prefix=
# 每一個MetricWriter bean名稱具備特定的觸發器屬性
spring.metrics.export.triggers.*=


# ----------------------------------------
# DEVTOOLS屬性
# ----------------------------------------

# DEVTOOLS(開發工具屬性)
# 啓用一個livereload.com兼容的服務器
spring.devtools.livereload.enabled= true
# # Server port.
spring.devtools.livereload.port= 35729
# 應該排除的觸發徹底從新啓動的其餘模式
spring.devtools.restart.additional-exclude=
# 觀看更改的附加路徑
spring.devtools.restart.additional-paths=
# 啓用自動重啓功能
spring.devtools.restart.enabled= true
# 應該排除的模式觸發徹底從新啓動
spring.devtools.restart.exclude= META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties
# 輪詢類路徑更改之間等待的時間量(以毫秒爲單位)
spring.devtools.restart.poll-interval= 1000
# 觸發從新啓動以前沒有任何類路徑更改所需的安靜時間量(以毫秒爲單位)
spring.devtools.restart.quiet-period= 400
# 更改後的特定文件的名稱將觸發從新啓動檢查 若是未指定任何類路徑文件更改將觸發從新啓動
spring.devtools.restart.trigger-file=


# 遠程開發工具屬性
# 用於處理遠程鏈接的上下文路徑
spring.devtools.remote.context-path= /.~~spring-boot!~
# 啓用遠程調試支持
spring.devtools.remote.debug.enabled= true
# 本地遠程調試服務器端口
spring.devtools.remote.debug.local-port= 8000
# 用於鏈接到遠程應用程序的代理主機
spring.devtools.remote.proxy.host=
# 用於鏈接到遠程應用程序的代理端口
spring.devtools.remote.proxy.port=
# 啓用遠程重啓
spring.devtools.remote.restart.enabled= true
# 創建鏈接所需的共享密鑰(須要啓用遠程支持)
spring.devtools.remote.secret=
# HTTP頭用於傳輸共享密鑰</ span>
spring.devtools.remote.secret-header-name= X-AUTH-TOKEN

html

相關文章
相關標籤/搜索