spring 以及 spring mvc 中常用注解整理
@RequestMapping(映射路径)
@Autowired(注入 bean 对象)
例如:
@Autowired
private BaseGroupDao baseGroupDao;
@Controller(Controller 层)
@Repository(dao 层)
@Service(Service 层)
2024-04-10 21:21:00
@RequestMapping(映射路径)
@Autowired(注入 bean 对象)
例如:
@Autowired
private BaseGroupDao baseGroupDao;
@Controller(Controller 层)
@Repository(dao 层)
@Service(Service 层)