所有程序包的分层结构
程序包分层结构:类分层结构
- java.lang.Object
- xyz.xiezc.example.web.entity.Album (implements java.io.Serializable)
- xyz.xiezc.ioc.starter.common.AopAspect (implements cn.hutool.aop.aspects.Aspect)
- xyz.xiezc.example.web.common.TestAopspect
- xyz.xiezc.example.Application
- xyz.xiezc.example.web.entity.Tag (implements java.io.Serializable)
- xyz.xiezc.example.web.controller.TestController
- xyz.xiezc.example.web.service.impl.TestServiceImpl (implements xyz.xiezc.example.web.service.TestService)
- xyz.xiezc.example.web.service.impl.TestServiceImpl2 (implements xyz.xiezc.example.web.service.TestService)
- xyz.xiezc.example.web.controller.WebSocketHandler (implements xyz.xiezc.ioc.starter.starter.web.netty.websocket.WebSocketFrameHandler)
接口分层结构
- xyz.xiezc.ioc.starter.orm.common.BaseMapper<Model>
- xyz.xiezc.example.web.mapper.AlbumMapper
- xyz.xiezc.example.web.mapper.TagMapper
- xyz.xiezc.example.web.service.TestService