English 中文(简体)
春季控制员两次
原标题:spring controller being called twice

这对我来说是一种nut子。 我的春季简便,只有一份像这样编成的“保守”背景档案:

<context:component-scan base-package="au.com.mypackage.service" />
<context:annotation-config />
<mvc:annotation-driven />

简单控制器:

@Controller
public class MyController {

    @RequestMapping(value = "/data/{id}", method=RequestMethod.GET)
    @ResponseBody public Bean getData(@PathVariable String id) {
        Bean bean = new Bean();
        bean.setSomething("hello");
        bean.setSomethingElse(5);
        return bean;
    }

利用电文转换器做这项工作。 然后,我提出“团结倡议”的要求:

GET http://localhost:8080/spring/data/123 HTTP/1.1

Accept-Encoding: gzip,deflate

Accept: application/json

User-Agent: Jakarta Commons-HttpClient/3.1

Host: localhost:8080

看来是工作ok。 当我看一看目录时,我看到控制器被两次传唤。 JSON就是这样。 但是,当我转而要求XML时,那就会产生可怕的错误。 第二项请求(不应发生任何情况)造成Stream因地表关闭而出现大规模错误。

问题的根源是控制者两次发出呼吁。 是否有任何人知道为什么会发生这种情况?

最佳回答

处理。 问题似乎在于SapUI。 我转往WizTools RESTClient,双线电话被拦截。 我不知道为什么SapUI正在这样做,尽管我给人的印象是,第二次呼吁总是要求XML,不管第一次呼吁是什么。

问题回答

暂无回答




相关问题
multi-staged form using spring

please forgive me for this stupid questions. I just started developing web application using spring yesterday. The project that i worked on, have a multi staged form, that require users to complete ...

Rewrite spring-security redirect URLs

I m trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I ve got is that when spring-security notices that an anonymous user is trying to access a protected resource it ...

Spring Advice - submitting a form

I am having serious problems with code I have written with Spring so I have decided to start from scratch and ask for advice. Here are my requirements: When the page first loads I need a list of ...

How to implement Logout feature using Spring Web Mvc

I am new to Spring Web MVC.. Can I get some example or online link that shows me how to implement logout feature using spring web mvc ? I don t want to use the in built feature of spring security (i....

Exception thrown after processing onSubmitAction

I am very new to Spring and I have a simpleFormController with 2 methods. referenceData() with is called when the page loads and onSubmitAction() which is called on the submit of a form. I am ...

热门标签