[求救]Spring 测试 注解注入
package oshop.test; import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.transaction.TransactionConfiguration; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:applicationContext.xml" }) @TransactionConfiguration(transactionManager = "transactionManager") public class BaseJunit4Test { }
测试的是一个WEB项目,怎么加载WEB-INF下面的applicationContext.xml
试过很多都不行。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
最后把applicationContext.xml放到SRC下面了。直接使用 classpath:/applicationContext.xml
也不用复制了。在WEB.XML里面添加了修改Spring配置文件默认路径的参数。 就好了。
例子上的都是包里面的路径,可能这东西放到SRC比较好
引用来自#5楼“asdfsx”的帖子
试一下:@ContextConfiguration(locations={"applicationContext.xml"})
spring官网的例子里没有看到有带classpath的啊
很久不用spring........
spring官网上的例子
http://static.springsource.org/spring/docs/2.5.1/reference/testing.html
试一下:@ContextConfiguration(locations={"applicationContext.xml"})
spring官网的例子里没有看到有带classpath的啊
很久不用spring........
spring官网上的例子
http://static.springsource.org/spring/docs/2.5.1/reference/testing.html
写 applicationContext.xml 就是 这个类的包下面的这个文件
写../回退也不行
写 /WEB-INF/下面的也不行
没办法了。复制了一个到这个包下面了。哎,难道只能复制一个吗
不行,路径还是不对。 java.io.FileNotFoundException: class path resource [../applicationContext.xml] cannot be opened
classpath应该是在src,就是WEB-INF/classes/下的吧!