我们曾经在web.xml中指定display-name 目前我们没有web.xml(添加一个似乎打破了应用程序)
我们正在使用spring boot / spring 4 / java 7 / maven3来开发休息服务。
有谁能告诉我如何设置显示名称? 例如,来自java code / SpringBootServletInitializer?
注意:我目前没有任何@WebServlet标签
在下面添加web.xml之后,tomcat管理器将显示display-name,但是在打开我的应用程序时,我得到404.似乎添加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>MyT2ConfigServer</display-name>
<description>MyT2ConfigServer description</description>
</web-app>
答案 0 :(得分:2)
自SpringBoot v1.3.1.RELEASE以来,您可以通过server.display-name
属性来完成。
请参阅https://github.com/spring-projects/spring-boot/issues/2600
答案 1 :(得分:0)
添加web.xml后,我遇到了一个由我做的其他更改导致的无关问题... 当我解决这个问题时,一切都很好,我可以按照M.Deinum的建议使用上面的web.xml。