博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot配置属性之其他
阅读量:6831 次
发布时间:2019-06-26

本文共 1781 字,大约阅读时间需要 5 分钟。

SpringBoot配置属性系列

另外附上个人关于springboot的一些文章

aop

  • spring.aop.auto

    是否支持@EnableAspectJAutoProxy,默认为: true

  • spring.aop.proxy-target-class

    true为使用CGLIB代理,false为JDK代理,默认为false

application

  • spring.application.admin.enabled

    是否启用admin特性,默认为: false

  • spring.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表,默认为true

  • spring.batch.job.enabled

    是否在启动时开启batch job,默认为true

  • spring.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,默认为true

  • spring.jmx.server

    指定MBeanServer bean name. 默认为: mbeanServer)

mail

  • spring.mail.default-encoding

    指定默认MimeMessage的编码,默认为: UTF-8

  • spring.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使用的协议,默认为: smtp

  • spring.mail.test-connection

    指定是否在启动时测试邮件服务器连接,默认为false

  • spring.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

      是否开启连接状态的视图,默认为false

    • spring.social.facebook.app-id

      指定应用id

    • spring.social.facebook.app-secret

      指定应用密码

    • spring.social.linkedin.app-id

      指定应用id

    • spring.social.linkedin.app-secret

      指定应用密码

    • spring.social.twitter.app-id

      指定应用ID.

    • spring.social.twitter.app-secret

      指定应用密码

转载地址:http://smjkl.baihongyu.com/

你可能感兴趣的文章
android 指定时间加一个小时算法
查看>>
[maven] settings 文件 国内镜像站
查看>>
redis make test 报错
查看>>
使用阿里DOCKER镜像加速器加速
查看>>
java-信息安全(二)-对称加密算法DES,3DES,AES,Blowfish,RC2,RC4
查看>>
java-信息安全(七)-基于非对称加密,对称加密等理解HTTPS
查看>>
[LeetCode] Encode and Decode TinyURL 编码和解码精简URL地址
查看>>
得到指定目录下的文件名
查看>>
JS代码压缩格式化在线地址
查看>>
maven 使用之自动编译热部署设置
查看>>
Cassandra第一次使用
查看>>
[转]关于OpenGL的绘制上下文
查看>>
Java ArrayList、string、string[]之间的转换
查看>>
Eclipse 配置Maven以及修改默认Repository
查看>>
【NOI2015】【寿司晚宴】【状压DP】
查看>>
软件开发的一些"心法"
查看>>
MySQL索引及查询优化总结
查看>>
获取iOS系统版本号,慎重使用[[[UIDevice currentDevice] systemVersion] floatValue]——【sdk缺陷】...
查看>>
秀尔算法:破解RSA加密的“不灭神话” --zz
查看>>
Redis学习之路(003)- hiredis安装及测试
查看>>