当前位置: 技术问答>java相关
我写了一个servlet--hello.hello,放在tomcat的web-inf/classes下,但不知该如何访问?在线等待
来源: 互联网 发布时间:2015-09-14
本文导语: 我写了一个servlet--hello.hello,放在tomcat的web-inf/classes下,但不知该如何访问?我知道在tomcat下,servlet只要放在web-inf/classes下就可以访问执行了,不需要其他配置,现在我的问题是这种情况好像只适合于这个servlet不在一...
我写了一个servlet--hello.hello,放在tomcat的web-inf/classes下,但不知该如何访问?我知道在tomcat下,servlet只要放在web-inf/classes下就可以访问执行了,不需要其他配置,现在我的问题是这种情况好像只适合于这个servlet不在一个包中的情况,如果servlet包含在一个包中,应该怎么访问了?如果web-inf/classes下既有hello.hello,又有hello又怎么办了?
|
编辑WEB-INF/web.xml, 加上:
hello //类名
hello.hello //路径
......5分钟后
搞定了吧! 给分吧!
hello //类名
hello.hello //路径
......5分钟后
搞定了吧! 给分吧!
|
同上.
访问时http://localhost:8080/servlet/hello
访问时http://localhost:8080/servlet/hello
|
http://localhost/servlet/hello