`

spring boot application properties配置详解

    博客分类:
  • SSH
阅读更多

 

转:http://blog.csdn.net/xiaoyu411502/article/details/48049099

# SPRING CONFIG (ConfigFileApplicationListener)

spring.config.name= # config file name (default to 'application')

spring.config.location= # location of config file

 

# PROFILES

spring.profiles.active= # comma list of active profiles

spring.profiles.include= # unconditionally activate the specified commaseparated profiles

 

# APPLICATION SETTINGS (SpringApplication)

spring.main.sources=

spring.main.web-environment= # detect by default

spring.main.show-banner=true

spring.main....= # see class for all properties

 

# LOGGING

logging.path=/var/logs

logging.file=myapp.log

logging.config= # location of config file (default classpath:logback.xmlfor logback)

logging.level.*= # levels for loggers, e.g."logging.level.org.springframework=DEBUG" (TRACE, DEBUG, INFO, WARN,ERROR, FATAL, OFF)

 

# IDENTITY (ContextIdApplicationContextInitializer)

spring.application.name=

spring.application.index=

 

# EMBEDDED SERVER CONFIGURATION (ServerProperties)

server.port=8080

server.address= # bind to a specific NIC

server.session-timeout= # session timeout in seconds

server.context-parameters.*= # Servlet context init parameters, e.g.server.context-parameters.a=alpha

server.context-path= # the context path, defaults to '/'

server.servlet-path= # the servlet path, defaults to '/'

server.ssl.enabled=true # if SSL support is enabled

server.ssl.client-auth= # want or need

server.ssl.key-alias=

server.ssl.ciphers= # supported SSL ciphers

server.ssl.key-password=

server.ssl.key-store=

server.ssl.key-store-password=

server.ssl.key-store-provider=

server.ssl.key-store-type=

server.ssl.protocol=TLS

server.ssl.trust-store=

server.ssl.trust-store-password=

server.ssl.trust-store-provider=

server.ssl.trust-store-type=

server.tomcat.access-log-pattern= # log pattern of the access log

server.tomcat.access-log-enabled=false # is access logging enabled

server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\

       192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\

       169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\

        127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}# regular expression matching trusted IP addresses

server.tomcat.protocol-header=x-forwarded-proto # front end proxyforward header

server.tomcat.port-header= # front end proxy port header

server.tomcat.remote-ip-header=x-forwarded-for

server.tomcat.basedir=/tmp # base dir (usually not needed, defaults totmp)

server.tomcat.background-processor-delay=30; # in seconds

server.tomcat.max-http-header-size= # maximum size in bytes of the HTTPmessage header

server.tomcat.max-threads = 0 # number of threads in protocol handler

server.tomcat.uri-encoding = UTF-8 # character encoding to use for URLdecoding

 

# SPRING MVC (WebMvcProperties)

spring.mvc.locale= # set fixed locale, e.g. en_UK

spring.mvc.date-format= # set fixed date format, e.g. dd/MM/yyyy

spring.mvc.message-codes-resolver-format= # PREFIX_ERROR_CODE /POSTFIX_ERROR_CODE

spring.mvc.ignore-default-model-on-redirect=true # If the the content ofthe "default" model should be ignored redirects

spring.view.prefix= # MVC view prefix

spring.view.suffix= # ... and suffix

spring.resources.cache-period= # cache timeouts in headers sent tobrowser

spring.resources.add-mappings=true # if default mappings should be added

 

# SPRING HATEOS (HateoasProperties)

spring.hateoas.apply-to-primary-object-mapper=true # if the primarymapper should also be configured

 

# HTTP encoding (HttpEncodingProperties)

spring.http.encoding.charset=UTF-8 # the encoding of HTTPrequests/responses

spring.http.encoding.enabled=true # enable http encoding support

spring.http.encoding.force=true # force the configured encoding

 

# JACKSON (JacksonProperties)

spring.jackson.date-format= # Date format string (e.g. yyyy-MM-ddHH:mm:ss), or a fully-qualified date format class name (e.g.com.fasterxml.jackson.databind.util.ISO8601DateFormat)

spring.jackson.property-naming-strategy= # One of the constants onJackson's PropertyNamingStrategy (e.g.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES) or the fully-qualified class name ofa PropertyNamingStrategy subclass

spring.jackson.deserialization.*= # see Jackson's DeserializationFeature

spring.jackson.generator.*= # see Jackson's JsonGenerator.Feature

spring.jackson.mapper.*= # see Jackson's MapperFeature

spring.jackson.parser.*= # see Jackson's JsonParser.Feature

spring.jackson.serialization.*= # see Jackson's SerializationFeature

 

# THYMELEAF (ThymeleafAutoConfiguration)

spring.thymeleaf.check-template-location=true

spring.thymeleaf.prefix=classpath:/templates/

spring.thymeleaf.excluded-view-names= # comma-separated list of viewnames that should be excluded from resolution

spring.thymeleaf.view-names= # comma-separated list of view names thatcan be resolved

spring.thymeleaf.suffix=.html

spring.thymeleaf.mode=HTML5

spring.thymeleaf.encoding=UTF-8

spring.thymeleaf.content-type=text/html # ;charset=<encoding> isadded

spring.thymeleaf.cache=true # set to false for hot refresh

 

# FREEMARKER (FreeMarkerAutoConfiguration)

spring.freemarker.allow-request-override=false

spring.freemarker.cache=true

spring.freemarker.check-template-location=true

spring.freemarker.charset=UTF-8

spring.freemarker.content-type=text/html

spring.freemarker.expose-request-attributes=false

spring.freemarker.expose-session-attributes=false

spring.freemarker.expose-spring-macro-helpers=false

spring.freemarker.prefix=

spring.freemarker.request-context-attribute=

spring.freemarker.settings.*=

spring.freemarker.suffix=.ftl

spring.freemarker.template-loader-path=classpath:/templates/ #comma-separated list

spring.freemarker.view-names= # whitelist of view names that can be resolved

 

# GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)

spring.groovy.template.cache=true

spring.groovy.template.charset=UTF-8

spring.groovy.template.configuration.*= # See Groovy'sTemplateConfiguration

spring.groovy.template.content-type=text/html

spring.groovy.template.prefix=classpath:/templates/

spring.groovy.template.suffix=.tpl

spring.groovy.template.view-names= # whitelist of view names that can beresolved

 

# VELOCITY TEMPLATES (VelocityAutoConfiguration)

spring.velocity.allow-request-override=false

spring.velocity.cache=true

spring.velocity.check-template-location=true

spring.velocity.charset=UTF-8

spring.velocity.content-type=text/html

spring.velocity.date-tool-attribute=

spring.velocity.expose-request-attributes=false

spring.velocity.expose-session-attributes=false

spring.velocity.expose-spring-macro-helpers=false

spring.velocity.number-tool-attribute=

spring.velocity.prefer-file-system-access=true # prefer file systemaccess for template loading

spring.velocity.prefix=

spring.velocity.properties.*=

spring.velocity.request-context-attribute=

spring.velocity.resource-loader-path=classpath:/templates/

spring.velocity.suffix=.vm

spring.velocity.toolbox-config-location= # velocity Toolbox configlocation, for example "/WEB-INF/toolbox.xml"

spring.velocity.view-names= # whitelist of view names that can beresolved

 

# JERSEY (JerseyProperties)

spring.jersey.type=servlet # servlet or filter

spring.jersey.init= # init params

spring.jersey.filter.order=

 

# INTERNATIONALIZATION (MessageSourceAutoConfiguration)

spring.messages.basename=messages

spring.messages.cache-seconds=-1

spring.messages.encoding=UTF-8

 

 

# SECURITY (SecurityProperties)

security.user.name=user # login username

security.user.password= # login password

security.user.role=USER # role assigned to the user

security.require-ssl=false # advanced settings ...

security.enable-csrf=false

security.basic.enabled=true

security.basic.realm=Spring

security.basic.path= # /**

security.filter-order=0

security.headers.xss=false

security.headers.cache=false

security.headers.frame=false

security.headers.content-type=false

security.headers.hsts=all # none / domain / all

security.sessions=stateless # always / never / if_required / stateless

security.ignored=false

 

# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)

spring.datasource.name= # name of the data source

spring.datasource.initialize=true # populate using data.sql

spring.datasource.schema= # a schema (DDL) script resource reference

spring.datasource.data= # a data (DML) script resource reference

spring.datasource.sql-script-encoding= # a charset for reading SQLscripts

spring.datasource.platform= # the platform to use in the schema resource(schema-${platform}.sql)

spring.datasource.continue-on-error=false # continue even if can't beinitialized

spring.datasource.separator=; # statement separator in SQLinitialization scripts

spring.datasource.driver-class-name= # JDBC Settings...

spring.datasource.url=

spring.datasource.username=

spring.datasource.password=

spring.datasource.jndi-name= # For JNDI lookup (class, url, username& password are ignored when set)

spring.datasource.max-active=100 # Advanced configuration...

spring.datasource.max-idle=8

spring.datasource.min-idle=8

spring.datasource.initial-size=10

spring.datasource.validation-query=

spring.datasource.test-on-borrow=false

spring.datasource.test-on-return=false

spring.datasource.test-while-idle=

spring.datasource.time-between-eviction-runs-millis=

spring.datasource.min-evictable-idle-time-millis=

spring.datasource.max-wait=

spring.datasource.jmx-enabled=false # Export JMX MBeans (if supported)

 

# DATASOURCE (PersistenceExceptionTranslationAutoConfiguration

spring.dao.exceptiontranslation.enabled=true

 

# MONGODB (MongoProperties)

spring.data.mongodb.host= # the db host

spring.data.mongodb.port=27017 # the connection port (defaults to 27107)

spring.data.mongodb.uri=mongodb://localhost/test # connection URL

spring.data.mongodb.database=

spring.data.mongodb.authentication-database=

spring.data.mongodb.grid-fs-database=

spring.data.mongodb.username=

spring.data.mongodb.password=

spring.data.mongodb.repositories.enabled=true # if spring datarepository support is enabled

 

# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)

spring.jpa.properties.*= # properties to set on the JPA connection

spring.jpa.open-in-view=true

spring.jpa.show-sql=true

spring.jpa.database-platform=

spring.jpa.database=

spring.jpa.generate-ddl=false # ignored by Hibernate, might be usefulfor other vendors

spring.jpa.hibernate.naming-strategy= # naming classname

spring.jpa.hibernate.ddl-auto= # defaults to create-drop for embeddeddbs

spring.data.jpa.repositories.enabled=true # if spring data repositorysupport is enabled

 

# JTA (JtaAutoConfiguration)

spring.jta.log-dir= # transaction log dir

spring.jta.*= # technology specific configuration

 

# SOLR (SolrProperties})

spring.data.solr.host=http://127.0.0.1:8983/solr

spring.data.solr.zk-host=

spring.data.solr.repositories.enabled=true # if spring data repositorysupport is enabled

 

# ELASTICSEARCH (ElasticsearchProperties})

spring.data.elasticsearch.cluster-name= # The cluster name (defaults toelasticsearch)

spring.data.elasticsearch.cluster-nodes= # The address(es) of the servernode (comma-separated; if not specified starts a client node)

spring.data.elasticsearch.repositories.enabled=true # if spring datarepository support is enabled

 

# DATA RESET (RepositoryRestConfiguration})

spring.data.rest.base-uri= # base URI against which the exporter shouldcalculate its links

 

# FLYWAY (FlywayProperties)

flyway.check-location=false # check that migration scripts locationexists

flyway.locations=classpath:db/migration # locations of migrationsscripts

flyway.schemas= # schemas to update

flyway.init-version= 1 # version to start migration

flyway.init-sqls= # SQL statements to execute to initialize a connectionimmediately after obtaining it

flyway.sql-migration-prefix=V

flyway.sql-migration-suffix=.sql

flyway.enabled=true

flyway.url= # JDBC url if you want Flyway to create its own DataSource

flyway.user= # JDBC username if you want Flyway to create its ownDataSource

flyway.password= # JDBC password if you want Flyway to create its ownDataSource

 

# LIQUIBASE (LiquibaseProperties)

liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml

liquibase.check-change-log-location=true # check the change log locationexists

liquibase.contexts= # runtime contexts to use

liquibase.default-schema= # default database schema to use

liquibase.drop-first=false

liquibase.enabled=true

liquibase.url= # specific JDBC url (if not set the default datasource isused)

liquibase.user= # user name for liquibase.url

liquibase.password= # password for liquibase.url

 

# JMX

spring.jmx.enabled=true # Expose MBeans from Spring

 

# RABBIT (RabbitProperties)

spring.rabbitmq.host= # connection host

spring.rabbitmq.port= # connection port

spring.rabbitmq.addresses= # connection addresses (e.g.myhost:9999,otherhost:1111)

spring.rabbitmq.username= # login user

spring.rabbitmq.password= # login password

spring.rabbitmq.virtual-host=

spring.rabbitmq.dynamic=

 

# REDIS (RedisProperties)

spring.redis.database= # database name

spring.redis.host=localhost # server host

spring.redis.password= # server password

spring.redis.port=6379 # connection port

spring.redis.pool.max-idle=8 # pool settings ...

spring.redis.pool.min-idle=0

spring.redis.pool.max-active=8

spring.redis.pool.max-wait=-1

spring.redis.sentinel.master= # name of Redis server

spring.redis.sentinel.nodes= # comma-separated list of host:port pairs

 

# ACTIVEMQ (ActiveMQProperties)

spring.activemq.broker-url=tcp://localhost:61616 # connection URL

spring.activemq.user=

spring.activemq.password=

spring.activemq.in-memory=true # broker kind to create if no broker-urlis specified

spring.activemq.pooled=false

 

# HornetQ (HornetQProperties)

spring.hornetq.mode= # connection mode (native, embedded)

spring.hornetq.host=localhost # hornetQ host (native mode)

spring.hornetq.port=5445 # hornetQ port (native mode)

spring.hornetq.embedded.enabled=true # if the embedded server is enabled(needs hornetq-jms-server.jar)

spring.hornetq.embedded.server-id= # auto-generated id of the embeddedserver (integer)

spring.hornetq.embedded.persistent=false # message persistence

spring.hornetq.embedded.data-directory= # location of data content (whenpersistence is enabled)

spring.hornetq.embedded.queues= # comma-separated queues to create onstartup

spring.hornetq.embedded.topics= # comma-separated topics to create onstartup

spring.hornetq.embedded.cluster-password= # customer password (randomlygenerated by default)

 

# JMS (JmsProperties)

spring.jms.jndi-name= # JNDI location of a JMS ConnectionFactory

spring.jms.pub-sub-domain= # false for queue (default), true for topic

 

# Email (MailProperties)

spring.mail.host=smtp.acme.org # mail server host

spring.mail.port= # mail server port

spring.mail.username=

spring.mail.password=

spring.mail.default-encoding=UTF-8 # encoding to use for MimeMessages

spring.mail.properties.*= # properties to set on the JavaMail session

 

# SPRING BATCH (BatchDatabaseInitializer)

spring.batch.job.names=job1,job2

spring.batch.job.enabled=true

spring.batch.initializer.enabled=true

spring.batch.schema= # batch schema to load

 

# AOP

spring.aop.auto=

spring.aop.proxy-target-class=

 

# FILE ENCODING (FileEncodingApplicationListener)

spring.mandatory-file-encoding=false

 

# SPRING SOCIAL (SocialWebAutoConfiguration)

spring.social.auto-connection-views=true # Set to true for defaultconnection views or false if you provide your own

 

# SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)

spring.social.facebook.app-id= # your application's Facebook App ID

spring.social.facebook.app-secret= # your application's Facebook AppSecret

 

# SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)

spring.social.linkedin.app-id= # your application's LinkedIn App ID

spring.social.linkedin.app-secret= # your application's LinkedIn AppSecret

 

# SPRING SOCIAL TWITTER (TwitterAutoConfiguration)

spring.social.twitter.app-id= # your application's Twitter App ID

spring.social.twitter.app-secret= # your application's Twitter AppSecret

 

# SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)

spring.mobile.sitepreference.enabled=true # enabled by default

 

# SPRING MOBILE DEVICE VIEWS(DeviceDelegatingViewResolverAutoConfiguration)

spring.mobile.devicedelegatingviewresolver.enabled=true # disabled bydefault

spring.mobile.devicedelegatingviewresolver.normal-prefix=

spring.mobile.devicedelegatingviewresolver.normal-suffix=

spring.mobile.devicedelegatingviewresolver.mobile-prefix=mobile/

spring.mobile.devicedelegatingviewresolver.mobile-suffix=

spring.mobile.devicedelegatingviewresolver.tablet-prefix=tablet/

spring.mobile.devicedelegatingviewresolver.tablet-suffix=

 

# ----------------------------------------

# ACTUATOR PROPERTIES

# ----------------------------------------

 

# MANAGEMENT HTTP SERVER (ManagementServerProperties)

management.port= # defaults to 'server.port'

management.address= # bind to a specific NIC

management.context-path= # default to '/'

management.add-application-context-header= # default to true

management.security.enabled=true # enable security

management.security.role=ADMIN # role required to access the managementendpoint

management.security.sessions=stateless # session creating policy to use(always, never, if_required, stateless)

 

# PID FILE (ApplicationPidFileWriter)

spring.pidfile= # Location of the PID file to write

 

# ENDPOINTS (AbstractEndpoint subclasses)

endpoints.autoconfig.id=autoconfig

endpoints.autoconfig.sensitive=true

endpoints.autoconfig.enabled=true

endpoints.beans.id=beans

endpoints.beans.sensitive=true

endpoints.beans.enabled=true

endpoints.configprops.id=configprops

endpoints.configprops.sensitive=true

endpoints.configprops.enabled=true

endpoints.configprops.keys-to-sanitize=password,secret,key # suffix orregex

endpoints.dump.id=dump

endpoints.dump.sensitive=true

endpoints.dump.enabled=true

endpoints.env.id=env

endpoints.env.sensitive=true

endpoints.env.enabled=true

endpoints.env.keys-to-sanitize=password,secret,key # suffix or regex

endpoints.health.id=health

endpoints.health.sensitive=true

endpoints.health.enabled=true

endpoints.health.mapping.*= # mapping of health statuses to HttpStatuscodes

endpoints.health.time-to-live=1000

endpoints.info.id=info

endpoints.info.sensitive=false

endpoints.info.enabled=true

endpoints.mappings.enabled=true

endpoints.mappings.id=mappings

endpoints.mappings.sensitive=true

endpoints.metrics.id=metrics

endpoints.metrics.sensitive=true

endpoints.metrics.enabled=true

endpoints.shutdown.id=shutdown

endpoints.shutdown.sensitive=true

endpoints.shutdown.enabled=false

endpoints.trace.id=trace

endpoints.trace.sensitive=true

endpoints.trace.enabled=true

 

# HEALTH INDICATORS (previously health.*)

management.health.db.enabled=true

management.health.diskspace.enabled=true

management.health.mongo.enabled=true

management.health.rabbit.enabled=true

management.health.redis.enabled=true

management.health.solr.enabled=true

management.health.diskspace.path=.

management.health.diskspace.threshold=10485760

management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP

 

# MVC ONLY ENDPOINTS

endpoints.jolokia.path=jolokia

endpoints.jolokia.sensitive=true

endpoints.jolokia.enabled=true # when using Jolokia

 

# JMX ENDPOINT (EndpointMBeanExportProperties)

endpoints.jmx.enabled=true

endpoints.jmx.domain= # the JMX domain, defaults to 'org.springboot'

endpoints.jmx.unique-names=false

endpoints.jmx.static-names=

 

# JOLOKIA (JolokiaProperties)

jolokia.config.*= # See Jolokia manual

 

# REMOTE SHELL

shell.auth=simple # jaas, key, simple, spring

shell.command-refresh-interval=-1

shell.command-path-patterns= # classpath*:/commands/**,classpath*:/crash/commands/**

shell.config-path-patterns= # classpath*:/crash/*

shell.disabled-commands=jpa*,jdbc*,jndi* # comma-separated list ofcommands to disable

shell.disabled-plugins=false # don't expose plugins

shell.ssh.enabled= # ssh settings ...

shell.ssh.key-path=

shell.ssh.port=

shell.telnet.enabled= # telnet settings ...

shell.telnet.port=

shell.auth.jaas.domain= # authentication settings ...

shell.auth.key.path=

shell.auth.simple.user.name=

shell.auth.simple.user.password=

shell.auth.spring.roles=

 

# GIT INFO

spring.git.properties= # resource ref to generated git info propertiesfile

分享到:
评论

相关推荐

    SpringBoot配置详解

    spring boot application properties配置详解

    spring boot application properties配置实例代码详解

    本文通过代码给大家介绍了spring boot application properties配置方法,需要的的朋友参考下吧

    Spring Boot 项目 application.properties 超配置详解

    Spring Boot 是一款基于 Spring 框架的快速开发框架,它通过自动配置和约定大于...该配置文件将深入介绍 Spring Boot 项目中 application.properties 的超配置功能,帮助开发者更好地理解和利用这一强大的配置机制。

    详解spring boot 使用application.properties 进行外部配置

    主要介绍了详解spring boot 使用application.properties 进行外部配置,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

    activiti和springboot整合只适应application.properties配置文件

    activiti和springboot整合只使用application.properties配置文件,解决了jdbc长时间待机连接被收回报错。使用springProcessEngineConfiguration对activiti管理

    从零开始学Spring Boot

    1.35 Spring Boot使用@SpringBootApplication注解 1.36 Spring Boot 监控和管理生产环境 1.37 Spring Boot的启动器Starter详解 1.38 Spring Boot集成Redis实现缓存机制 1.39 Spring Boot Cache理论篇 1.40 Spring ...

    spring boot内置jetty

    spring boot内置jetty开发,附带一些基础小功能,比如上传下载文件,走马灯,图片预览等等。

    Spring-Boot-application.properties

    Spring-Boot-application.properties 描述,中文解释springboot 的application.properties 中每个配置是什么意思。

    详解Spring Boot配置文件application.properties

    在本文中我们给大家整理了关于Spring Boot 的配置文件 application.properties的相关知识点内容,需要的朋友们参考学习下。

    Spring Boot核心配置文件模板

    Spring Boot核心配置文件模板application.properties,里面有所有配置的key以及value样例

    Spring Boot中配置文件application.properties使用

    主要介绍了Spring Boot中配置文件application.properties使用及spring boot读取application.properties文件的方式,需要的朋友参考下吧

    Spring boot官方配置文件

    Spring Boot 配置文件application.yml或application.properties官方文档整合,汉化版

    Spring Boot中配置Redis的讲义最全讲义

    2.2 配置application.properties 编写Redis配置类 3.1 使用@Configuration注解 3.2 使用@EnableCaching注解 3.3 配置Redis连接工厂 3.4 配置RedisTemplate 编写Redis缓存操作示例 4.1 添加缓存注解 4.2 获取缓存数据...

    Java课程实验 Spring Boot 分别整合 MyBatis、JPA

    在 application.properties(或 application.yml)中配置MySQL数据库连接信息 3.创建实体类和Mapper接口: 创建实体类,表示数据库表的映射对象。 创建Mapper接口,使用注解或XML配置SQL语句和数据库操作。 4.扫描...

    Spring.Boot.Cookbook.1785284150

    If you are a Spring Developer who has good knowledge level and understanding of Spring Boot and application development and now want to learn efficient Spring Boot development techniques in order to ...

    spring-boot-reference.pdf

    11. Developing Your First Spring Boot Application 11.1. Creating the POM 11.2. Adding Classpath Dependencies 11.3. Writing the Code 11.3.1. The @RestController and @RequestMapping Annotations 11.3.2. ...

    spring-boot-邮件发送

    Spring Boot通过集成spring-boot-starter-mail依赖和相关配置,可以方便地实现邮件发送功能。具体的步骤: 添加依赖:在Spring Boot项目的pom.xml文件中加入spring-boot-starter-mail依赖,如果需要发送模板邮件,还...

    2.Spring Boot的简单使用

    回顾一下我们如何搭建一个SSM(Spring,Spring MVC,MyBatis)web框架,配置web.xml,将权限交给Spring,设置Spring容器的配置文件application.properties,开启自动扫包、配置数据库文件、引用数据源、文件资源过滤...

    Spring boot整合Dubbo

    1、Spring Boot 她其实就是整合了Spring MVC和Spring减少了配置的xml用注解和application.properties代替了.xml,其次他还内嵌可tomcat可以用Main函数替代了tomcat。 2、Dubbo又阿里开发的典型的分布式处理框架 ,...

Global site tag (gtag.js) - Google Analytics