创建 web项目

配置pom.xml文件   ------相当于jar包

配置application.yml -----配置文件(spring数据库连接、server服务、logging日志等)

创建 package  (entity、controller、service、configuration、repository、interceptor等)

小例子:

entity:Person

spring boot web开发  简单的增删改查和spring boot 自带的Junit测试 案例-LMLPHP

数据持久化(dao):

spring boot web开发  简单的增删改查和spring boot 自带的Junit测试 案例-LMLPHP

controller:

spring boot web开发  简单的增删改查和spring boot 自带的Junit测试 案例-LMLPHP

spring 自带Junit测试@SpringBootTest,不用自己在pom.xml里配置Junit

spring boot web开发  简单的增删改查和spring boot 自带的Junit测试 案例-LMLPHP

05-02 09:22