Spring 3 REST с XML дает «406 не приемлемо» - PullRequest
3 голосов
/ 23 мая 2011

Я пытаюсь реализовать REST Remoting с помощью Spring 3, но не могу получить сообщение об ошибке 406 Not Acceptable ... Я пытаюсь удалить 1 сервис, который возвращает приложение / XML-контент. Каждый раз, когда я отправляю запрос с "Accept=application/xml", я получаю ошибку 406. Каждый раз, когда я отправляю его с каким-то другим заголовком «Accept», я получаю 404 (и исключение handleNoSuchRequestHandlingMethod). Сам сервис вызывается, как я вижу в журналах. Я также заметил, что во время инициализации сервлета я получаю следующую ошибку, хотя я не уверен, что это проблема:

Did not find any ViewResolvers to delegate to; please configure them using the 'viewResolvers' property on the ContentNegotiatingViewResolver

Я пробовал много разных конфигураций, но безуспешно. Может быть, вы можете заметить какую-то ошибку в моей реализации?

extService-servlet.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:util="http://www.springframework.org/schema/util"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:task="http://www.springframework.org/schema/task" xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:oxm="http://www.springframework.org/schema/oxm" xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
                        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/task http://www.springframework.org/schema/task/spring-task-3.0.xsd
                        http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-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="ch.epimmo.immogreen.backend.mvc" />

    <mvc:annotation-driven />

    <oxm:jaxb2-marshaller id="jaxbMarshaller">
        <oxm:class-to-be-bound name="ch.epimmo.immogreen.common.dto.ExpertDto" />
    </oxm:jaxb2-marshaller>


    <bean
        class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"
        p:order="#{T(org.springframework.core.Ordered).HIGHEST_PRECEDENCE}">
        <property name="defaultContentType" value="text/html" />
        <!-- <property name="ignoreAcceptHeader" value="true" /> -->
        <property name="favorPathExtension" value="true" />
        <property name="mediaTypes">
            <map>
                <entry key="xml" value="application/xml" />
            </map>
        </property>
        <property name="defaultViews">
            <list>
                <bean class="org.springframework.web.servlet.view.xml.MarshallingView">
                    <property name="marshaller" ref="jaxbMarshaller" />
                </bean>
            </list>
        </property>
    </bean>
</beans>

Контроллер

@Controller
@RequestMapping( { "extService" })
public class ExtServiceController {

    protected final static Logger LOGGER = Logger.getLogger(ExtServiceController.class);

    @Autowired
    private UserManagementService userManagementService;    

    // @RequestMapping(value = "/experts", method = RequestMethod.GET, headers = { "Accept=*/*" })
    // @RequestMapping(value = "experts", method = RequestMethod.GET)
    @RequestMapping(value = "experts", method = RequestMethod.GET, headers = { "Accept=application/xml, text/xml" })
    public @ResponseBody
    ExpertDto getExperts() {            
              return new ExpertDto();
    }
}

Тест

DefaultHttpClient httpClient = new DefaultHttpClient();

String expertsUrl = "http://localhost:8080/extService/experts";

HttpGet getRequest = new HttpGet(expertsUrl);
getRequest.setHeader(new BasicHeader("Accept", "application/xml"));
// getRequest.setHeader(new BasicHeader("Accept", "text/html"));
// getRequest.setHeader(new BasicHeader("Accept", "*/*"));

HttpResponse response = httpClient.execute(getRequest);
HttpEntity entity = response.getEntity();
InputStream content = entity.getContent();

Ответы [ 2 ]

0 голосов
/ 08 декабря 2013

Измените аннотацию @RequestMapping как

@RequestMapping(value = "experts", method = RequestMethod.GET, headers = { "Accept=application/xml" })

0 голосов
/ 18 августа 2012

Попробуйте использовать следующий подход вместо @ ResponseBody

@RequestMapping(value = "experts", method = RequestMethod.GET)
public @ResponseBody
void getExperts(org.springframework.ui.Model model) {            
      model.addAttribute(new ExpertDto());
}

«Не удалось найти ViewResolvers для делегирования ...» - это просто предупреждение, его можно игнорировать.

...