摘要:
今天遇到了ftl整合springboot出现的问题 @Controller public class IndexController { @RequestMapping("hello") public String index(){ System.out.println("aaa"); return 阅读全文
摘要:
基本知识:spring最底层使用的是Map,id是bean的id,value是bean的class或者是实例。 1:bean的加载顺序。 @Bean("testDao") public TestDao testDao3(){ TestDao testDao = new TestDao(); test 阅读全文