Webapp的display-name问题

简介:

临时需要做一个webapp,就按myeclipse缺省的web工程做了,web.xml也没改,本地测试没问题就放到服务器上去了。

测试发现,走 http://服务器ip:8080/appname居然出不来页面,undeploy再deploy还是一样,到tomcat管理页面http://服务器ip:8080/manager/html一看Display Name是空的,由于web工程就修改index.jsp页面一些html元素,于是想问题只能与web.xml有关,于是找到了<display-name>节点,填入必要的名称后,再之作一个war文件,发布上去http://服务器ip:8080/appname就显示正常了,http://服务器ip:8080/manager/htmlDisplay Name也显示了刚才填入的内容。

以前做Webapp总是先修改了<display-name>再修改其它的东西,所以没遇到这个问题,赶工时出现了,基本功还是不够啊。









本文转自张昺华-sky博客园博客,原文链接:http://www.cnblogs.com/xiandedanteng/p/4705647.html,如需转载请自行联系原作者





相关文章
Minesweeper game(Plain version)--C
Minesweeper game(Plain version)--C
43 0
|
8月前
An error happened during template parsing (template: “ServletContext resource [/WEB-INF/templates/in
An error happened during template parsing (template: “ServletContext resource [/WEB-INF/templates/in
|
5月前
|
开发工具 git
Stylelint—— Expected class selector ".nut-popup--top" to be kebab-case selector-class-pattern
新项目制定规范接入了stylelint,并通过husky在git提交时去触发检测修复,因为使用的是NutUi,所以无法直接调整组件对应的类名称,只好在stylelint.config.js中加入相应的rules进行配置。
147 0
|
8月前
|
前端开发 图形学
Could you provide some examples of when Canvas or SVG would be the better choice for a web application?
Could you provide some examples of when Canvas or SVG would be the better choice for a web application
|
8月前
|
Java 数据库连接 Spring
【SpringBoot】Error starting ApplicationContext. To display the conditions report re--run your app
【SpringBoot】Error starting ApplicationContext. To display the conditions report re--run your app
291 0
|
Java Maven
Maven打包出现webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)
Maven打包出现webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)
802 0
|
Java 应用服务中间件 Maven
Eclipse中targetlm2e-wtplweb-resources\META-1(Click for details)解决办法
最近总是发现我的eclipse里面的maven项目总是报错误时不时地出现,然后我自己更新一下maven项目,这个错误又消失了,错误如下:
Eclipse中targetlm2e-wtplweb-resources\META-1(Click for details)解决办法
|
JavaScript 开发者
Web Components系列(三) —— 创建 Custom Elements
根据前面的介绍,我们知道根据是否继承基本 HTML 元素,可以将自定义元素分为两类“
193 0
Web Components系列(三) —— 创建 Custom Elements
|
XML Java 数据格式
Myeclipse中java web.xml报错cvc-complex-type.2.3: Element 'web-app' cannot have character [children], because the type's content type is element- only.
web.xml文件添加servlet访问限制后出现如下错误:   cvc-complex-type.2.3: Element 'web-app' cannot have character [children], because the type's content type is element- only. 翻译:   cvc-complex-type.2.3:元素'web-app'不能包含character [children],因为该类型的内容类型是仅包含元素的。
3903 0
|
JavaScript Unix
web pack 在js区分是 run dev还是 run build
package.json 配置 cross-env NODE_ENV=production "build": "cross-env NODE_ENV=production webpack --progress -...
1151 0