Springboot+MyBatis+SpringMVC框架实战总结

框架入门:
1、通过idea创建springboot项目
2、针对业务做表设计和实体类的创建entity-Area
3、配置pom.xml用maven做jar包管理,使用本地仓库
4、配置最底层dao(数据访问层)

  • 1、mybatis配置mybatis-config.xml
  • 2、配置config-dao-DataSourceConfiguration和SessionFactoryConfiguration
  • 3、配置mapper-AreaDao.xml
  • 4、配置dao-AreaDao接口,显现增删改查,通过AreaDao.xml连接数据库实现
  • 5、对dao层进行测试dao-AreaDaoTest

5、配置service层进行事物管理(在基础操作上增加一层包装)

  • 1、配置config-service-TransactionManagementConfiguration
  • 2、配置接口service-AreaService
  • 3、配置实现类service-impl-AreaServiceImpl

6、配置controller层(web层)

  • 1、配置web-AreaController用于接收前端发送的请求,对Area进行增删改查

你可能感兴趣的:(web项目开发)