为什么@Resouce 注解 得到的是null啊
数据库没有问题 求解
@Resouce null 注解
------解决方案--------------------
先加载spring,第一行加上这句话:
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml")//路径写你自己的
------解决方案--------------------
你直接运行main 方法的吧。你的容器没装载启动怎么能扫描到。你必须加上ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml")
然后才可以直接运行main 方法。