我要同时组装多个Dao,
@Autowired
WeatherReportDao weatherReportDao;
@Autowired
AtmosphereReportDao atmosphereReportDao;
现在是这样写的,能不能只使用@Autowired一次?
怪我咯2017-05-17 10:10:53
哥们你挺懒的,不够这世界就是为懒人服务的,
你可以写个抽象基类,然后让你的所有需要这么干的类,都继承这个基类,
这样你就可以不写注解了,但是关键你还是需要写个自定义的bean工厂