2017-10-08 49 views
1

我正在使用spring mvc做一些演示,并且在部署应用程序时遇到问题。我使用wildfly 10.0.0未找到映射HTTP Spring MVC

在不明白什么是我的web.xml中

<web-app xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
     http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
version="3.0"> 

<display-name>Archetype Created Web Application</display-name> 

<servlet> 
    <servlet-name>simu-cmac</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <init-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value>/WEB-INF/spring/app-config.xml</param-value> 
    </init-param> 
    <load-on-startup>1</load-on-startup> 
</servlet> 

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

在我的应用程序-config.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:context="http://www.springframework.org/schema/context" 
xmlns:mvc="http://www.springframework.org/schema/mvc" 
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd 
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd"> 

<context:component-scan base-package="com.cmac.simu" /> 

<mvc:annotation-driven/> 

我的控制器

@Controller 
public class SimuAPIController { 

protected final Log logger = LogFactory.getLog(getClass()); 

@RequestMapping("/home.htm") 
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) 
     throws ServletException, IOException { 

    logger.info("Returning home view"); 
    System.out.println("To home view"); 
    return new ModelAndView("home.jsp"); 
} 

} 

当应用程序被部署以下错误显示在控制台

19:50:39,417 WARN [org.springframework.web.servlet.PageNotFound] (default task-3) No mapping found for HTTP request with URI [/simu-cmac/home.htm] in DispatcherServlet with name 'simu-cmac' 
+0

你可以在tomcat中试试吗?我只是想确定它是否是应用程序服务器的问题。 –

+0

只需尝试/home.htm。我无法看到为/simu-cmac/home.htm设置的上下文路径? – Barath

+0

我将它部署在tomcat中,运行没有问题,有人知道为什么wildfly会给出这些问题 我曾经改变过任何配置或代码,只有服务器 –

回答

0

看来可能是你的控制器不是由Spring应用程序scaned上。如你所定义:

<context:component-scan base-package="com.cmac.simu" /> 

所以你的控制器必须在com.cmac.simu包内。所以spring配置可以扫描你的控制器。

相关问题