vue打成war包的web.xml内容
时间: 2023-10-12 13:12:45 浏览: 101
vue-router-sitemap-通过vue-router配置生成sitemap.xml-Vue.js开发
在将Vue打成war包时,需要在webapp目录下新建WEB-INF目录,并在其中新建web.xml文件,其内容如下:
```
<?xml version="1.0" encoding="UTF-8"?>
<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>Vue App</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/index.html</location>
</error-page>
</web-app>
```
其中,`<display-name>`为应用程序的名称,`<welcome-file-list>`为欢迎页面列表,`<error-page>`为错误页面配置,将404错误重定向到`index.html`页面。
阅读全文