0

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

我正在努力让 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 正常运行而提供的任何帮助。如果您需要查看其他内容,请告诉我。谢谢你。

4

2 回答 2

1

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

<context:component-scan />

在您的弹簧配置中。

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

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

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

<context:annotation-config />

从配置线。

您可以从这里获得摘要。

于 2013-05-29T18:03:01.577 回答
1

您的映射与请求不匹配。

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

更改为@RequestMapping("/login")应该工作或其他方法是将 DispatcherServlet 的映射更改为/

于 2013-05-29T18:31:04.260 回答