0

我正在使用 Spring 2.5(基于 XML 的配置)。在我的 Spring 控制器中,如何将字符串返回给我的 AJAX 请求?我的ajax代码如下:

 jq("#editAdTextSave").click(function() {
        alert( "Handler for .click() called." );
        jq.ajax({
              url: 'bookingDetail.html',
              type: 'POST',
              data: 'action=updateAdText',
              success: function(data) {
                //called when successful
                alert(model);
                //$('#ajaxphp-results').html(data);
              },
              error: function(e) {
                //called when there is an error
                //console.log(e.message);
  }
});
    });

COntroller onSubmit 需要一个 ModelAndView 对象返回值。但是我只需要返回一个字符串。我该怎么做。请建议。

4

2 回答 2

0

您需要@ResponseBody在映射方法中使用。使用@ResponseBody将写入您返回的值,HttpResponseBody并且不会被评估为视图。这是快速演示:

@Controller
public class DemoController {

    @RequestMapping(value="/getString",method = RequestMethod.POST)
    @ResponseBody
    public String getStringData() {
        return "data";
    }    
}
于 2014-12-26T06:31:12.100 回答
0

与问题一样,使用的是Spring 2.5@ResponseBodySpring 3.0中引入

@see最新 Spring 中的 ResponseBody JavaDocs


回到问题。

在我的 Spring 控制器中,我如何返回一个字符串...

根据Spring Blog Post的简单答案,您需要将OutputStream其作为参数添加到控制器方法中。

您基于 XML 的配置应如下所示

<?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:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="your.controllers"/>

</beans>

你的控制器应该是这样的

package your.controllers;

@Controller
public class YourController {

    @RequestMapping(value = "/yourController")
    protected void handleRequest(OutputStream outputStream) throws IOException {
        outputStream.write(
            "YOUR DESIRED STRING VALUE".getBytes()
        );
    }
}

最后,如果您想在没有任何注释的情况下进行操作,那么;

您的基于 XML 的配置应如下所示

<?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:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>

    <bean name="/yourController" class="your.controllers.YourController"/>

</beans>

你的控制器应该是这样的

package your.controllers;

public class YourController extends AbstractController {

    @Override
    protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception {
        response.getOutputStream().write(("YOUR DESIRED STRING VALUE").getBytes());
        return null;
    }
}
于 2017-03-05T15:10:07.173 回答