[求救]Spring 测试 注解注入

发布于 2021-11-14 18:59:27 字数 606 浏览 906 评论 7

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

千笙结 2021-11-15 06:25:48

最后把applicationContext.xml放到SRC下面了。直接使用 classpath:/applicationContext.xml 

也不用复制了。在WEB.XML里面添加了修改Spring配置文件默认路径的参数。 就好了。

坐在坟头思考人生 2021-11-15 06:24:09

例子上的都是包里面的路径,可能这东西放到SRC比较好

緦唸λ蓇 2021-11-15 06:17:50

引用来自#5楼“asdfsx”的帖子

试一下:@ContextConfiguration(locations={"applicationContext.xml"}) 

spring官网的例子里没有看到有带classpath的啊
很久不用spring........
spring官网上的例子

http://static.springsource.org/spring/docs/2.5.1/reference/testing.html

葬花如无物 2021-11-15 06:13:36

试一下:@ContextConfiguration(locations={"applicationContext.xml"}) 

spring官网的例子里没有看到有带classpath的啊
很久不用spring........
spring官网上的例子

http://static.springsource.org/spring/docs/2.5.1/reference/testing.html

哑剧 2021-11-15 06:02:13

写 applicationContext.xml 就是 这个类的包下面的这个文件

写../回退也不行

写 /WEB-INF/下面的也不行

没办法了。复制了一个到这个包下面了。哎,难道只能复制一个吗

羁拥 2021-11-15 06:01:53

不行,路径还是不对。 java.io.FileNotFoundException: class path resource [../applicationContext.xml] cannot be opened

画骨成沙 2021-11-15 04:59:12

classpath应该是在src,就是WEB-INF/classes/下的吧!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文