SpringBoot配置属性之其他
SpringBoot配置属性系列
另外附上个人关于springboot的一些文章
aop
spring.aop.auto
是否支持@EnableAspectJAutoProxy,默认为: truespring.aop.proxy-target-class
true为使用CGLIB代理,false为JDK代理,默认为false
application
spring.application.admin.enabled
是否启用admin特性,默认为: falsespring.application.admin.jmx-name
指定admin MBean的名称,默认为: org.springframework.boot:type=Admin,name=SpringApplication
autoconfig
spring.autoconfigure.exclude
配置要排除的Auto-configuration classes.
batch
spring.batch.initializer.enabled
是否在必要时创建batch表,默认为truespring.batch.job.enabled
是否在启动时开启batch job,默认为truespring.batch.job.names
指定启动时要执行的job的名称,逗号分隔,默认所有job都会被执行spring.batch.schema
指定要初始化的sql语句路径,默认:classpath:org/springframework/batch/core/schema-@@platform@@.sql)spring.batch.table-prefix
指定批量处理的表的前缀.
jmx
spring.jmx.default-domain
指定JMX domain name.spring.jmx.enabled
是否暴露jmx,默认为truespring.jmx.server
指定MBeanServer bean name. 默认为: mbeanServer)
spring.mail.default-encoding
指定默认MimeMessage的编码,默认为: UTF-8spring.mail.host
指定SMTP server host.spring.mail.jndi-name
指定mail的jndi名称spring.mail.password
指定SMTP server登陆密码.spring.mail.port
指定SMTP server port.spring.mail.properties
指定JavaMail session属性.spring.mail.protocol
指定SMTP server使用的协议,默认为: smtpspring.mail.test-connection
指定是否在启动时测试邮件服务器连接,默认为falsespring.mail.username
指定SMTP server的用户名.
sendgrid
spring.sendgrid.password
指定SendGrid password.spring.sendgrid.proxy.host
指定SendGrid proxy host.spring.sendgrid.proxy.port
指定SendGrid proxy port.spring.sendgrid.username
指定SendGrid username.
social
spring.social.auto-connection-views
是否开启连接状态的视图,默认为falsespring.social.facebook.app-id
指定应用idspring.social.facebook.app-secret
指定应用密码spring.social.linkedin.app-id
指定应用idspring.social.linkedin.app-secret
指定应用密码spring.social.twitter.app-id
指定应用ID.spring.social.twitter.app-secret
指定应用密码
SpringBoot配置属性之其他的更多相关文章
- SpringBoot配置属性之Server
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性转载地址
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之Migration
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之Security
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之MQ
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之NOSQL
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之MVC
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性二
server配置 server.address指定server绑定的地址 server.compression.enabled是否开启压缩,默认为false. server.compression.e ...
- SpringBoot配置属性之Server参数
server配置server.address指定server绑定的地址 server.compression.enabled是否开启压缩,默认为false. server.compression.ex ...
随机推荐
- RAMPS1.4 3d打印控制板接线与测试2
http://learn.makerlab.me/guides/1/articles/2 mega 2560板子在3d打印机中相当于大脑,控制这所有的3d打印配件来完成复杂的打印工作,但mega256 ...
- 如何用Javascript检测到所有的IE版本
如何用Javascript检测到所有的IE版本 function GetIEVersion() { var sAgent = window.navigator.userAgent; var Idx = ...
- Android通用框架设计与完整电商APP开发系列文章
作者|傅猿猿 责编|Javen205 有福利 有福利 有福利 鸣谢 感谢@傅猿猿 邀请写此系列文章 Android通用框架设计与完整电商APP开发 课程介绍 [导学视频] [课程详细介绍] 以下是部分 ...
- SQL语句 怎么把从一个表中查出来数据插入到另一个表中
(1).select * into destTbl from srcTbl(2).insert into destTbl(fld1, fld2) select fld1, 5 from srcTbl
- spring boot-mybatis三种动态sql(5)
脚本sql XML配置方式的动态SQL我就不讲了,有兴趣可以自己了解,下面是用<script>的方式把它照搬过来,用注解来实现.适用于xml配置转换到注解配置 @Select(" ...
- python 爬虫资料
API Requests PyQuery http://www.tuicool.com/articles/UZrmUb2 http://blog.csdn.net/cnmilan/article/de ...
- Java Netty (2)
通过一个实例来说明Netty的使用.用1个服务器连接5个客户端线程,客户端连接上服务器以后就向服务器发送消息,服务器接收到消息后向客户端返回消息,客户端接收到消息以后,等待随机的时间,再向服务端发送消 ...
- Can't connect to MySQL server on 'ip' (13)
解决方法1.:setsebool -P httpd_can_network_connect_db=1 解决方法2.:修改/etc/selinux/config SELINUX=enforcing 为 ...
- ETL面试题
1. What is a logical data mapping and what does it mean to the ETL team? 什么是逻辑数据映射?它对ETL项目组的作用是什么? 答 ...
- C++ 的 runtime exception是没有扩展性的
https://groups.google.com/forum/#!topic/seastar-dev/RuK-OajeqHk https://www.google.com/search?ei=gTH ...