4

我想在 Spring 应用程序中从服务器返回 JSON 响应。以下是我的代码片段。

@RequestMapping(value="getCustomer.action", method = RequestMethod.GET)
    public @ResponseBody Customer getValidCustomer(Model model) {
        System.out.println("comes");
        Customer customer2 = (Customer) customerService
                .getCustomer("vvmnbv@jgfj.ghfjg");
        System.out.println(customer2.getEmail());
        return customer2;

    }

但是我在客户端遇到错误。

4

4 回答 4

2

你需要:

  • Jackson JSON Mapper添加到类路径
  • 添加<mvc:annotation-driven>到您的配置中
  • 返回Map<Integer, String>

阅读:http: //blog.safaribooksonline.com/2012/03/28/spring-mvc-tip-returning-json-from-a-spring-controller/

于 2013-09-13T07:21:26.083 回答
2

既然你已经有了一个包含一些细节的答案,我想我只会举一个例子。干得好:

    @RequestMapping(value = "/getfees", method = RequestMethod.POST)
public @ResponseBody
DomainFeesResponse getFees(
        @RequestHeader(value = "userName") String userName,
        @RequestHeader(value = "password") String password,
        @RequestHeader(value = "lastSyncDate", defaultValue = "") String syncDate) {

    return domainFeesHelper.executeRetreiveFees(userName, password, syncDate);
}

只是一个小总结:如您所知,您将需要在类路径中使用 Jackson 库,以便可以将 Objects 转换为 JSON。

@ResponseBody 告诉 spring 转换其返回值并自动将其写入 HTTP 响应。不需要其他配置。

于 2013-09-13T09:11:10.350 回答
0

//我创建了一个类,用于将简单字符串转换为json可转换格式并将其返回到JSP页面,在那里它解析为json并使用如下

  public class Json {    

    public static String Convert(Object a,Object b){
    return " \""+a.toString()+"\" : \""+b.toString()+"\",";
}

  public static String ConvertLast(Object a,Object b){
    return " \""+a.toString()+"\" : \""+b.toString()+"\" }";
}
public static String ConvertFirst(Object a,Object b){
    return "{ \""+a.toString()+"\" : \""+b.toString()+"\",";
}    }

//控制器代码忽略我放入 conver()、convertLast() 和 convertFirst() 方法的数据

String json = Json.ConvertFirst("apId", appointment.getId())
                + Json.Convert("appDate",
                        format.format(appointment.getAppointmentdate()))
                + Json.Convert("appStart", formathourse.format(appointment
                        .getAppointmentstarttime()))
                + Json.Convert("appEnd", formathourse.format(appointment
                        .getAppointmentendtime()))
                + Json.Convert("PatientId", appointment.getPatientId()
                        .getId())
                + Json.Convert("PatientName", appointment.getPatientId()
                        .getFname()
                        + " "
                        + appointment.getPatientId().getLname())
                + Json.Convert("Age", appointment.getPatientId().getAge())
                + Json.Convert("Contact", appointment.getPatientId()
                        .getMobile())
                + Json.Convert("Gender", appointment.getPatientId()
                        .getSex())
                + Json.ConvertLast("Country", appointment.getPatientId()
                        .getCountry());
        return json;}

/JSP JQuery 代码

               var app=jQuery.parseJSON(response);

                $("#pid").html(app.PatientId);

                $("#pname").html(app.PatientName);

                $("#pcontact").html(app.Contact);
于 2014-09-10T07:06:50.013 回答
0

下面给出了示例 *-servlet.xml 配置。

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="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 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="org.smarttechies.controller" />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
   <property name="mediaTypes">
      <map>
        <entry key="html" value="text/html"></entry>
        <entry key="json" value="application/json"></entry>
        <entry key="xml" value="application/xml"></entry>
      </map>
   </property>
   <property name="viewResolvers">
      <list>
        <bean class="org.springframework.web.servlet.view.UrlBasedViewResolver">
           <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
           <property name="prefix" value="/WEB-INF/jsp/"/>
           <property name="suffix" value=".jsp"/>
        </bean>
      </list>
   </property>
</bean>
</beans>

然后将应用程序部署到服务器并通过将“Accept”标头设置为“application/json”以获取 JSON 格式的响应或“application/xml”以获取 XML 格式的响应来发送请求。

有关 Spring REST 的详细说明可在http://smarttechie.org/2013/08/11/creating-restful-services-using-spring/获得

于 2013-09-13T09:06:10.570 回答