0

我使用 MockMvc 为 spring mvc 测试控制器制作测试代码。很好!但我对messages.properties 有一些问题。

我已将“messageResource”注册到 applicationContext.xml。我已经用属性占位符检查了这个文件。

但是,它在测试代码中不起作用。但它在网络服务器中工作。如何将 messages.properties 设置为 MockMvc?

这是我的测试代码中的 applicationContext.xml。

<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="classpath:messages" />
<property name="defaultEncoding" value="UTF-8"/>

这是我的测试代码。请帮我。;

@Test
public void addUserWithPostToSuccess() throws Exception {
    MvcResult result = mvc.perform(post("/user/add/index").param("loginId", "LOGIN_ID").param("name", "NAME").param("password", "PASSWORD"))
                          .andExpect(status().isOk())
                          .andReturn();
    Map<String, Object> model = result.getModelAndView().getModel();
}
4

1 回答 1

0

解决了。这是我的错。;; messages.properties 文件的位置

于 2013-04-01T08:59:44.370 回答