How I can display the application name on the "display name" column on tomcat server?
I'm working on a java mid-level app, and I need to deploy it onto a tomcat server. My problem is that when I deployed the app on the tomcat server, the name is not showing in the column "display name". How do I display the application name in t开发者_开发知识库his column ?
In your web.xml you need:
<display-name>Your App Display Name</display-name>
Display Name - The display name for the web application if it has one configured in its "web.xml
" file.
Type here.
<display-name>Application Display Name</display-name>
精彩评论