|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果你只是想应付一下操作系统的课程,劝你最好别学,或者说不要指望能用的怎么样。
1.tomcat本来的默许根目次是http://localhost:8080,假如想修正会见的根目次,能够如许:
找到tomcat的server.xml(在conf目次下),找到:
.代码以下:
<Hostname="localhost"appBase="webapps"
unpackWARs="true"autoDeploy="true"
xmlValidation="false"xmlNamespaceAware="false"></Host>
在</Host>前拔出:
.代码以下:
<Contextpath=""docBase="D:/eclipse3.3/jb51.net/tomcat/"debug="0"/>
个中D:/eclipse3.3/jb51.net/tomcat/就是我想设置的网站根目次,然后重启tomcat。
再次会见http://localhost:8080时,就是间接会见D:/eclipse3.3/jb51.net/tomcat/目次下的文件了。
2.tomcat的web.xml(在conf目次下),在该文件中找到
.代码以下:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
这是tomcat默许的3个文件,当你输出指定路径后,tomcat会主动查找这3个页面。假如你想让tomcat主动找到本人的页面,好比main.jsp。能够修正下面信息为:
.代码以下:
<welcome-file-list>
<welcome-file>main.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
如许就能够了。
有些人号称用过十几种甚至几十种linux,向人谈论起来头头是到,好像懂的很多。 |
|