mybatis 结构(1)

java包中:

entity包放实体类;

dao包放操作接口(和xml文件关联的),用@Mapper修饰接口

service包放服务接口(用来)

service.impl包放实现service的接口(用于操作从dao接口获取的数据,或向dao传递数据等),用@Service修饰类

controller包用来放控制类,从service(也可以是dao)获取、存放数据,并可以通过网络访问这些接口。用@Controller修饰类,@RequestMapping("/abc/def")修饰类,则类里用Mapping结尾的修饰器修饰的方法可通过 localhost:8080/abc/def/方法修饰名访问。(8080是端口,可修改)

mybatis 结构(1)_第1张图片

resources中:

添加XXXMapper.xml文件(看application中‘mapper-locations:’配置)

mybatis: 
  configuration:
    map-underscore-to-camel-case: true
#配置在resources/mabatis/文件夹名/名Mapper.xml文件
  mapper-locations: mybatis/**/*Mapper.xml
#对应 com.包名.entity
  typeAliasesPackage: com.**.entity

mybatis 结构(1)_第2张图片

你可能感兴趣的:(mysql,mybatis)