无法让Ajax工作。这与附加配置有关吗?

时间:2013-05-29 17:46:52

标签: java ajax spring spring-mvc

仍在尝试使用Spring Framework来解决问题,所以我提前为我的闪亮新意道歉。

我正在尝试让Ajax工作,并且结果不尽如人意。

这是控制器代码,这正是我想要开始工作的东西所以它看起来似乎微不足道:

@RequestMapping("/rest/login")    
public @ResponseBody CallManager logIn() throws ServletException {
    callManager.removeStationId(); 
    return callManager;
}

这是相关的web.xml

<servlet>
  <servlet-name>myservlet</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
  <servlet-name>myservlet</servlet-name>
  <url-pattern>*.htm</url-pattern>
</servlet-mapping>

<servlet-mapping>
  <servlet-name>myservlet</servlet-name>
  <url-pattern>/rest/*</url-pattern>
</servlet-mapping>

这是myservlet-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: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/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">


    <import resource="database-c3p0.xml" />
    <context:annotation-config/>

    <mvc:annotation-driven /> 

    <!-- the application context definition for the springapp DispatcherServlet -->
    <bean id="productManager" class="org.dat.service.ProductManagerImpl">
    </bean>

    <bean id="priceIncrease" class="org.dat.service.PriceIncrease">
    </bean>

    <bean id="stationID" class="org.dat.domain.StationId">
    <property name="datStation" value=""/>
    </bean>

    <bean id="messageSource"   class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basename" value="messages"/>
    </bean>

    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView">
        </property>
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <property name="suffix" value=".jsp"></property>        
    </bean>

</beans>

这是我得到的错误:

org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/myservlet/rest/login] in DispatcherServlet with name 'myservlet'

非常感谢您提供正确运行Ajax的任何帮助。如果您需要查看其他任何内容,请与我们联系。谢谢。

2 个答案:

答案 0 :(得分:1)

如果你是整个配置,我认为你缺少的是

<context:component-scan />

在弹簧配置中。

如果没有它,您的控制器类(我假设您的控制器类使用@Controller注释)将不会被检测到。这就是文档所说的

  

扫描将自动注册为Spring bean的带注释组件的类路径。默认情况下,    Spring提供的@ Component,@ Repository,@ Service和@Controller构造型将是    检测。

此外,一旦在配置中指定了此项,默认情况下它还会提供context:annotation-config的行为。所以,你可以删除

<context:annotation-config />

来自配置。

您可以从here获取摘要。

答案 1 :(得分:1)

您的映射与请求不符。

DispatcherServlet的映射为/rest/*,因此对/myservlet/rest/login的调用将由DispatcherServlet正确处理,但除此之外它找不到匹配项,原因是DispatcherServlet会从映射匹配的其余部分中去掉它的映射。所以在这种情况下,它会寻找/login的匹配,并且不会在任何控制器中找到它。

更改为@RequestMapping("/login")应该有效,或者其他方法是将DispatcherServlet的映射更改为/