修改Jboss服务端口及国际化资源文件设置
Posted scruffybear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改Jboss服务端口及国际化资源文件设置相关的知识,希望对你有一定的参考价值。
文章目录
小结
记录Jboss配置服务端口及国际华资源文件设置。
问题及解决
修改Jboss服务端口
修改目录C:\\jboss-5.1.0.GA\\server\\all\\deploy\\jbossweb.sar
下的server.xml
从
<Service name="jboss.web">
<!-- A HTTP/1.1 Connector on port 8080 -->
<Connector protocol="HTTP/1.1" port="8080" address="$jboss.bind.address"
connectionTimeout="20000" redirectPort="8443" />
...
...
</Service>
修改为:
<Service name="jboss.web">
<!-- A HTTP/1.1 Connector on port 8080 -->
<Connector protocol="HTTP/1.1" port="9999" address="$jboss.bind.address"
connectionTimeout="20000" redirectPort="8443" />
...
...
</Service>
这样Jboss服务端口就从8080
修改为 9999
了。
设置国际化资源文件
将jsp文件中的配置从
<html xmlns="http://www.w3.org/1999/xhtml">
<f:loadBundle basename="messages" var="msg"/>
<html>
修改为:
<html xmlns="http://www.w3.org/1999/xhtml">
<f:loadBundle basename="messages_zh_CN" var="msg"/>
<html>
使其指向正确的资源文件。
设置之前显示为:
JSF¿ìËÙÈëÃÅ
Óû§Ãû£º
ÃÜ Â룺
设置之后显示为:
JSF快速入门
用户名:
密 码:
以上是关于修改Jboss服务端口及国际化资源文件设置的主要内容,如果未能解决你的问题,请参考以下文章