应用程序在 GlassFish 4.1 上部署成功但浏览错误 404
Application Deployed Successful on GlassFish 4.1 but browsing error 404
我是 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>
改变
<url-pattern>*.htm</url-pattern>
至
<url-pattern>/*</url-pattern>
或对特定 html 文件使用 URL。
尝试添加url-模式
“.xhtm”
如果您使用 xhtml 文件或
“.jsf”
在 jsf 案例中。
我是 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>
改变
<url-pattern>*.htm</url-pattern>
至
<url-pattern>/*</url-pattern>
或对特定 html 文件使用 URL。
尝试添加url-模式 “.xhtm” 如果您使用 xhtml 文件或 “.jsf” 在 jsf 案例中。