Spring Boot
官网:https://spring.io/projects
一、快速搭建SpringBoot项目
1. 在线创建:https://start.spring.io/
2. IDEA 工具创建
1.
2
.
二、了解Spring Boot 项目
1.
2.
3.
4.
5spring boot底层源码注解.
三、简单应用Spring Boot 项目
1.目录结构:
2.pom.xml文件:
3.DemoController类:
4.application.properties配置文件:
5.LxApplication类:
6.执行结果:
三、源码:
1.DemoController类:
@RestController
public class DemoController {
@Autowired
private JdbcTemplate jdbcTemplate;
@RequestMapping("/demo1")
public Map<String ,Object> demo1(){
Map<String ,Object> map=new HashMap<>();
map.put("data","你好spring Boot")