spring boot项目基本结构

/==================================Controller  

@Controller 

public class SimpleController {  

@Autowired 

private SimpleService simpleService;  

}  

//==================================Service  

@Service("simpleService")  

public class SimpleServiceImpl implements SimpleService {  

@Autowired  

  private SimpleDao simpleDao;  

}  

/ /===================================Repository  

@Repository("simpleDao")  

 public class SimpleDaoImpl implements SimpleDao {  

}  

posted @ 2018-03-05 11:28  jack_zou2018  阅读(140)  评论(0编辑  收藏  举报