Spring MVC контроллер выпуска - PullRequest
4 голосов
/ 15 января 2011

Я пытаюсь научиться весеннему MVC, пока все хорошо, но я застрял сейчас. Я пытаюсь научиться создавать json и получать его с помощью javascript (jquery).

Но для целей тестирования я попытался создать что-то, чтобы я мог видеть, что оно отображается правильно через http-запрос, затем я попытаюсь создать json и получить его, но пока я даже не могу заставить запрос работать , Вот мой контроллер:

@Controller
@RequestMapping(value="/")
public class IndexController {

@RequestMapping(method=RequestMethod.GET)
    public String index() {
          return "index";
    }

Map<Long,Item> itemMap = createItemMap();

@RequestMapping(value="item/{itemId}", method=RequestMethod.GET)
    public @ResponseBody Item get(@PathVariable Long itemId) {
        Item item = itemMap.get(itemId);
        if (status == null) {
            throw new ResourceNotFoundException(itemId);
        }
        return item;
    }

private Map<Long,Item> createItemMap(){
//omitted because its irrelevant
//I created 2 item objects , with id 1 and 2 for testing purposes
}

}

Это содержимое моего servlet-context.xml:

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

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <!-- Imports user-defined @Controller beans that process client requests -->
    <beans:import resource="controllers.xml" />

</beans:beans>

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

    <!-- Scans within the base package of the application for @Components to configure as beans -->
    <context:component-scan base-package="com.testing.mvc.controller" />

        <!-- Application Message Bundle -->
    <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <property name="basename" value="/WEB-INF/messages/messages" />
        <property name="cacheSeconds" value="0" />
    </bean>

</beans>

Моя война называется Test.war, когда я пытаюсь localhost:8080/Test, я получаю индексное представление, которое в порядке. Но независимо от того, что я пытаюсь:

localhost:8080/Test/item/1
 localhost:8080/Test/item?itemId=1
 localhost:8080/item?itemId=1

У меня возникает какая-то ошибка, самая интересная из них:

The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers ().

Я много гуглил, мне показалось это интересным:

http://blog.springsource.com/2010/01/25/ajax-simplifications-in-spring-3-0/ https://src.springframework.org/svn/spring-samples/mvc-ajax/trunk/ Отображение спокойных запросов Ajax к весне Json Спрингса не разрешается с соответствующим ответом

Пока ничего не помогло, любая идея, по которой я скучаю. Извините за предоставление слишком много информации.

1 Ответ

2 голосов
/ 15 января 2011

Насколько я могу судить, вам не хватает этого резольвера, как это в вашем диспетчере:

<bean name="jsonViewResolver" class="org.springframework.web.servlet.view.XmlViewResolver">
    <property name="order" value="1"/>
 </bean>

Взгляните на это:
http://spring -json.sourceforge.net/quick_simpleform.html

Вам необходимо создать файл views.xml в директории WEB-INF с этим содержимым:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
      "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
    <bean name="jsonView" class="org.springframework.web.servlet.view.json.JsonView"/>
</beans>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...