gpt4 book ai didi

java - Spring Rest json 输出

转载 作者:行者123 更新时间:2023-12-01 13:47:32 24 4
gpt4 key购买 nike

我创建了一个 Spring 应用程序,当我打开以下链接时,该应用程序成功运行:localhost:8080/test/greeting。服务器已完全部署,但是当我打开该链接时,会下载一个名为 greeting 的文件,其中集成了 json。我尝试在 Internet Explorer 上打开该链接,我认为 json 会直接出现在屏幕上。难道不是这样吗?

这是调度程序 servlet:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<context:component-scan base-package="test" />
<mvc:annotation-driven />
</beans>

这是 web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>

</web-app>

这是 GreetingController 代码:

package test;

import java.util.concurrent.atomic.AtomicLong;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class GreetingController {

private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();

@RequestMapping("/greeting")
public @ResponseBody Greeting greeting(
@RequestParam(value="name", required=false, defaultValue="World") String name) {
return new Greeting(counter.incrementAndGet(),
String.format(template, name));
}
}

我找了好久,没找到解决办法。

最佳答案

似乎没有为响应设置正确的内容类型。如果要将默认响应内容类型和转换器设置为 JSON,除了返回定义上的 @ResponseBody 注释之外,还可以将以下 bean 定义添加到 spring 上下文文件中。

<bean id="jacksonMessageConverter"class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="jacksonMessageConverter" />
</list>
</property>
</bean>

您还需要将 Jackson 添加到类路径中以处理实际的 Java <=> JSON 转换。 如果这是您默认想要的,它可以帮助您避免使用样板代码,为每个请求映射定义方法手动将内容类型设置为 JSON。

关于java - Spring Rest json 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20250658/

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