spring boot
清风不问烟雨
这个作者很懒,什么都没留下…
展开
-
SpringBoot基本配置
入口类和@SpringBootApplication @SpringBootApplication是Spring Boot的核心注解,是一个组合注解,部分源码如下: @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @SpringBootConfigurati转载 2017-11-13 20:41:05 · 175 阅读 · 0 评论 -
Profile配置
Profile是Spring用来针对不同环境对不同的配置提供支持的,全局Profile配置使用application-{profile}.properties application.properties:spring.profiles.active=prod/dev 指定使用哪个配置文件 application-dev.properties:server.port=88转载 2017-11-13 20:41:56 · 1685 阅读 · 0 评论 -
SpringBoot外部配置
Spring Boot的配置文件 Spring Boot使用一个全局的配置文件application.properties或者application.yml(yaml语言的配置文件),放置在src/main/resource目录或者类路径的config下面 application.properties下配置: server.port=9090 server.context-pa转载 2017-11-13 20:40:08 · 215 阅读 · 0 评论 -
快速搭建SpringBoot项目
Spring Boot简介: Spring Boot是Spring社区发布的一个开源项目,旨在帮助开发者快速并且更简单的构建项目。它使用习惯优于配置的理念让你的项目快速运行起来,使用Spring Boot很容易创建一个独立运行(运行jar,内置Servlet容器,Tomcat、jetty)、准生产级别的基于Spring框架的项目,使用SpringBoot你可以不用或者只需要很少转载 2017-11-13 20:38:59 · 296 阅读 · 0 评论