- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以在 Controller 中使用@Autowired,例如
@RestController
public class Index {
@Autowired
HttpServletResponse response;
@GetMapping("/")
void index() throws IOException {
response.sendRedirect("http://example.com");
}
}
它有效;
但是当我尝试使用 @MockBean 测试此类时
@RunWith(SpringRunner.class)
@SpringBootTest
public class IndexTest {
@Autowired
Index index;
@MockBean
HttpServletResponse response;
@Test
public void testIndex() throws IOException {
index.index();
}
}
它抛出异常并说
Description:
Field response in com.example.demo.Index required a single bean, but 2 were found:
- com.sun.proxy.$Proxy69@425d5d46: a programmatically registered singleton - javax.servlet.http.HttpServletResponse#0: defined in null
Action:
Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed
如何解决?
最佳答案
虽然可能恕我直言,但像这样注入(inject) HttpServletResponse
或 HttpServletRequest
是一个坏习惯。这会导致奇怪的问题,而且看起来很奇怪又是错误的。而是使用 HttpServletResponse
类型的方法参数并使用 Spring MockHttpServletResponse
用于测试。
然后编写单元测试就像创建类的新实例并调用该方法一样简单。
public class IndexTest {
private Index index = new Index();
@Test
public void testIndex() throws IOException {
MockHttpServletResponse response = new MockHttpServletResponse();
index.index(response);
// Some assertions on the response.
}
}
如果您想将其作为更大的集成测试的一部分进行测试,您或多或少可以执行相同的操作,但使用 @WebMvcTest
注释。
@RunWith(SpringRunner.class)
@WebMvcTest(Index.class)
public class IndexTest {
@Autowired
private Index index;
@Test
public void testIndex() throws IOException {
MockHttpServletResponse response = new MockHttpServletResponse();
index.index(response);
// Some assertions on the response.
}
}
或者使用MockMvc
使用模拟请求进行测试
@RunWith(SpringRunner.class)
@WebMvcTest(Index.class)
public class IndexTest {
@Autowired
private MockMvc mockMvc;
@Test
public void testIndex() throws IOException {
mockMvc.perform(get("/")).
andExpect(status().isMovedTemporarily());
MockHttpServletResponse response = new MockHttpServletResponse();
index.index(response);
// Some assertions on the response.
}
}
上面的测试也可以使用@SpringBootTest
编写,区别在于@WebMvcTest
只会测试和引导Web切片(即Web相关的东西),而 @SpringBootTest
实际上会启动整个应用程序。
关于java - 不能 Mockbean HttpServletResponse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55234478/
我使用 Spring mvc,我的问题是关于 sendError方法来自 HttpServletResponse . 有人可以告诉我哪个最好: @RequestMapping(method = Req
前言: Servlet 中的 doXXX 方法的目的就是根据请求计算得到相应,然后把响应的数据设置到 HttpServletResponse 对象中;然后 Tomcat 就会把这个 HttpServl
在 java 中向 HttpServletResponse 添加一些内容时,我可以获取响应编写器并附加: httpResponse.getWriter().append("Some Content")
我正在开发一个将 http 请求(GET 用于测试目的)发送到 java servlet 的设置。它的工作原理是,ser let 从浏览器获取请求,解析它并通过 TCP 套接字将其发送到“主”服务器,
我正在构建一个网络应用程序。 此 Web 应用程序的一部分是从客户端到服务器的 ajax 请求: $.ajax({ url: url, type: "get", d
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
在 servlet 应用程序中,Web 服务器将 HttpServletResponse 转发到浏览器,对吗?然后浏览器将渲染它并显示 html。 但是浏览器期望的 Response 对象的确切类型是
我在为我在 Web 应用程序上创建的 CSV 文件设置字符集时遇到问题(在 Tomcat9 服务器上的 Windows 笔记本电脑上进行测试)。这就是我所做的: byte[] data = resul
我有一个 Java 网络服务应用程序,我正在尝试执行导出功能以将一些数据从数据库导出到 excel 文件 为此,我使用了 HttpServletResponse,但即使我设置了文件名和编码类型,导出的
我正在尝试设置一个可用于异步调用 Web 服务的 servlet。在大多数情况下,它运行良好。我有一个带有 doGet 方法的 servlet 和一个调用它的 js。我在 js 中有一个回调方法,当
我使用doGet方法来获取参数,然后进行处理。发送回复时,其中包含状态数据。此外,当第二个客户端连接时,答案包含来自第一个客户端的数据。我希望在第二个客户端连接后发送新的数据。重置缓冲区并向第二个客户
编译以下代码时遇到问题 public void doGet(HttpServletRequest request, HttpServletResponse response) throws Servl
我有以下问题:我有一个 HttpServlet 创建一个文件并将其返回给必须以下载形式接收它的用户 byte[] byteArray = allegato.getFile(); InputStream
我正在寻找一种 Autowiring HttpServletResponse 的方法。它不适用于开箱即用的 Spring ,但我发现 this description .这可行,但有点烦人,在那个 S
我创建了一个自定义过滤器来修改 http 响应的内容。内容替换本身工作正常,但是当内容大小大于原始响应时,它会被截断为与原始响应相同的大小,同时丢失剩余字符。 这是我的自定义过滤器: public c
在我的应用程序中,我有 2 个过滤器: 1) 首先,抛出异常,我调用 response.sendError(UNAUTHORIZED.getStatusCode(), "My message"); 2
我有一个 HttpServletResponse 对象,需要编写一个包含在 jar 中的文件。以下代码段对我不起作用。 URI uri = .class.getResource("/" + filen
只是一个简短的问题 - sendRedirect 使用什么方法(例如 GET、POST 等)?它是否从请求中继承它?而且,如果是这样,是否可以将其更改为另一个?谢谢! 最佳答案 sendRedirec
我看到一些帖子说Servlet Filter中的repsonse.sendError之后需要返回,是否需要?如果是这样,为什么? public class AuthorizationSecurityF
我正在我的网络应用程序过滤器中运行,该过滤器从外部源接收有关用户的信息,无论他是否登录。这是我的过滤器: @Override public void doFilter( ServletRequest
我是一名优秀的程序员,十分优秀!