- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
将 Spring Security 添加到我的 Spring Boot 项目后(没有真正配置它来执行任何操作),集成测试失败并出现以下错误:
java.lang.AssertionError: Response body was not valid JSON: <CustomResponse><content><id>dde6fd40-0ca3-482b-9a8e-b05fdab1b7b6</id><domain>somedomain.com</domain></content></CustomResponse>
在将 Spring Security 添加到项目之前,我的响应正文已适当序列化为 JSON。
我一直在搜索 Spring Security 文档,以了解任何响应主体和客户端之间发生的情况,但我无法弄清楚为什么 Spring Security 可能会干扰 RestController 对其进行序列化的方式。
这是我的 RestController 的示例:
@RestController
@RequestMapping("example-mapping")
@AllArgsConstructor
public class ExampleController {
private final ExampleService exampleService;
@GetMapping("/example")
public CustomResponse<ExampleDTO> checkOut(@RequestParam("domain") String domain) {
ExampleEntity result = exampleService.checkOut(domain);
return new CustomResponse<>(new ExampleDTO(result));
}
}
这是我的准系统,没有安全配置:
@Configuration
@AllArgsConstructor
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
private AuthenticationFilter authenticationFilter;
protected void configure(HttpSecurity http) throws Exception {
http
.addFilterBefore(authenticationFilter, BasicAuthenticationFilter.class)
.httpBasic().disable();
}
}
这是我的准系统,没有任何身份验证过滤器:
@Component
@AllArgsConstructor
public class AuthenticationFilter extends OncePerRequestFilter {
private ObjectMapper objectMapper; // injecting a global object mapper to read headers
@Override
protected void doFilterInternal(
HttpServletRequest request,
HttpServletResponse response,
FilterChain filterChain) throws ServletException, IOException {
// Read some headers, but currently not doing anything
filterChain.doFilter(request, response);
}
}
编辑:查看响应的 Content-Type
后,它的 application/xml
(DUH)。所以问题是,身份验证过滤器将响应设置为 XML 的位置在哪里?
编辑:将 @GetMapping("/example")
更改为 @GetMapping(value = "/example", Produce = "application/json")
修复序列化问题。有没有办法让它们都默认生成 JSON?
最佳答案
当您使用 spring-web
设置项目时,JSON 已经是默认的内容类型。类路径中是否还有 spring-security 也没关系。我创建了一个具有最少依赖项的示例项目:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
我的 TestController 默认返回 JSON:
@RestController
public class TestController {
@GetMapping("/hello")
public Map<String, String> getGreeting() {
final HashMap<String, String> result = new HashMap<>();
result.put("value", "hello");
return result;
}
}
{
"value": "hello"
}
因此您的依赖项可能存在问题。
关于java - 实现 Spring Security 后,Spring Boot ResponseBody 未序列化为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57628689/
有什么区别吗 @ResponseBody public Object method(etc..) { etc.. } 和 public @ResponseBody Object method(
我有多个返回 JSON 对象的 REST 端点。对于大多数区域设置,响应都是正确的(所有符号都正确显示在响应中,并且内容类型为 application/json)。 如果我提供值为“en_NL”的 A
我有一个@restController类型 Controller ,当我访问请求的资源时,我得到一个json作为响应,问题是所有属性都出现在我看来,并且它不尊重我生成的构造函数。 但是,该类的所有属性
当我使用下面来获取用户对象时,它工作得很好。 @GetMapping("/findOne") @ResponseBody public Optional findOne (Long id) {
我有一个用于普通旧 xml Web 服务的 Spring MVC Controller ,方法如下: @RequestMapping( value = "/trade/{tradeId
我有一些东西可以通过 spring security 进行 ajax 登录: @RequestMapping(value="/entry.html", method=RequestMethod.GET
我有一个要求,我想处理异常的返回方式。根据 Controller 方法的类型,如果使用 @ResponseBody 注释,则应返回一个 json 字符串。此外,如果它是一个 String 返回方法,则
@ResponseBody 转化成json后与实体类字段名不一致 实体类A字段名由B改成C后,Controller 中返回的List中字段名仍然是C 经过@ResponseBody返回到前台后又变成了
我正在看一段代码,其中我假设spring决定在幕后使用Jackson为@RestController自动将对象转换为json @RestController @RequestMapping("/ap
它可能很简单,但它对我理解非常有帮助...... 我在我的 restcontroller 中使用 @ResponseBody 将 String 值返回给浏览器。浏览器成功接收响应字符串。 即: @Re
使用 @ResponseBody 时有没有办法将空值映射到空字符串的注释? 最佳答案 你将不得不编写一个自定义的 Jackson Serializer - 一个很好的例子在这里 - http://wi
我想在 spring mvc 方法中重定向到另一个 .jsp。我不想使用 javascripts 方法,例如:window.location.replace(url)。 我的方法: @RequestM
我有一个 RestController,它将 Film 对象列表发送回用户: @RestController @RequestMapping("/view") public class FilmRes
在 Spring Boot 中,我有最简单的 Controller ,返回我的 View 名称: @Controller public class HelloController { @Req
我只想将我的用户对象作为 JSON 返回,以供客户端的 ajax 调用使用。 这在某一点上是有效的,经过一些更新(即,将应用程序更改为部署到/在 Jetty 中),现在就不行了。 我没有从代码中抛出异
我基于 Spring MVC 构建我的 Web 应用程序,并在尝试在处理 ajax 请求的方法中添加 cookie 时遇到问题。 我意识到带有@ResponseBody 的方法(在我的示例中它返回一个
我希望我的字符串方法返回值。下面的代码返回一个 View (jsp)。在代码“line”中存储产品详细信息。我希望该方法返回该值。有人可以告诉我该怎么做吗? @RequestMapping(value
我正在尝试从网站获得响应。我正在使用 HttpURLConnection 类。 这是我的代码: BufferedReader in = null; in = new Buffer
我有以下 Spring @RestController 方法 @RequestMapping(value = "/getPeople", method = RequestMethod.GET) pub
如何创建用于模拟以下服务的 ResponseBody 对象? public interface SBRestfulApi { @FormUrlEncoded @POST("authen
我是一名优秀的程序员,十分优秀!