我是java spring和glassfish 4.1的新手。我的应用程序在glassfish中成功部署但浏览错误404 ..
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<servlet>
<servlet-name>springapp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>
index.jsp
</welcome-file>
</welcome-file-list>
</web-app>
答案 0 :(得分:1)
更改
<url-pattern>*.htm</url-pattern>
到
<url-pattern>/*</url-pattern>
或使用特定html文件的URL。
答案 1 :(得分:0)
尝试添加url-pattern “为.xhtm” 如果你使用xhtml文件或 “ .jsf” 在jsf案例中。