
spring boot
浴缸灬
一个执着于编程的菜鸟
展开
-
Spring Boot 2.0之走向自动装配
Spring 模式注解装配 模式注解 模式注解是一种用于声明在应用中扮演“组件”角色的注解。如 Spring Framework 中的 @Repository 标注在任何类上 ,用于扮演仓储角色的模式注解。 @Component 作为一种由 Spring 容器托管的通用模式组件,任何被 @Component 标注的组件均为组件扫描的候选对象。类似地,凡是被 @Component 元标注(meta-...原创 2019-03-09 17:31:04 · 1902 阅读 · 0 评论 -
Spring Boot 2.0之理解SpringApplication
Spring Boot 2.0之理解SpringApplicationSpringApplication的基本使用SpringApplication 运行自定义 SpringApplication通过 SpringApplication API 调整通过 SpringApplicationBuilder API 调整SpringApplication 准备阶段配置 Spring Boot Bean...原创 2019-03-10 13:29:39 · 1461 阅读 · 0 评论 -
Spring Boot 2.0之Web MVC 核心
Spring Framework 时代的一般认识 实现 Controller @Controller public class HelloWorldController { @RequestMapping("") public String index() { return "index"; } } 配置 Web MVC 组件 app-context....原创 2019-03-11 21:21:24 · 1036 阅读 · 0 评论