gpt4 book ai didi

java - Spring MVC : Testing particular annotated method gets invoked

转载 作者:行者123 更新时间:2023-12-04 06:11:48 27 4
gpt4 key购买 nike

在 Spring MVC 3.0 中,如何测试特定方法是否被调用?

例如,我有这个 Controller 方法:

public class myController {
@RequestMapping(value = "/create", method = RequestMethod.GET)
public ModelAndView create(ModelMap map) {
map.put("category", new Category());
return new ModelAndView("views/someView", map);
}
}

我如何测试这个 create()当有人请求 http://example.com/create url 时调用方法。

最佳答案

在单元测试中,您应该只测试 Controller 的 Java 代码,而不要使用任何 Servlet 技术。

在集成测试中,您可以做以下几件事之一:

使用 org.springframework.mock.web spring-test 工件中的包,其中包含用于请求、响应、servletContext 的模拟对象,以在您的 Controller 上触发假请求并从假响应中读取数据。

或者使用像 Selenium 这样的 Web 测试框架来针对已部署的 Web 应用程序工作。

关于java - Spring MVC : Testing particular annotated method gets invoked,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7690425/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com