How to invoke a servlet without mapping in web.xml?

房东的猫 提交于 2020-02-09 11:21:28

问题


How to invoke a simple servlet using the following URL: http://localhost:8080/servlet/MyServlet

I placed it in the folder: tomcat\webapps\ROOT\WEB-INF\classes

I've read there is no need to mention the servlet in web.xml. I did the same. Still, I'm unable to invoke it.


回答1:


I've read there is no need to mention the servlet in web.xml.

You're probably confusing with the legacy Tomcat-builtin InvokerServlet which was present in older versions of Apache Tomcat (and still mentioned in poor and outdated tutorials/books). It indeed allowed to invoke servlets like that without the need to map anything. However, it was later confirmed that it was a security hole and vulrenable to attacks. It was disabled and deprecated on Tomcat 5.0 and removed on Tomcat 7.0. In such case, you really need to map your servlet in web.xml (and put it in a package!).

Another source of confusion may be the new Servlet 3.0 @WebServlet annotation. When you're already using a Servlet 3.0 container like Tomcat 7.0, then you could use this annotation to map the servlet without the need to fiddle with web.xml.

package com.example;

@WebServlet("/MyServlet")
public class MyServlet extends HttpServlet {

    // ...

}

Then you'll be able to access it the way you want.

See also:

  • Our Servlets wiki page



回答2:


your web.xml file has to be like this

<web-app>

<servlet>
    <servlet-class>mypackage.myservlet</servlet-class> 
            <!--  the full name of your class  -->
    <servlet-name>name</servlet-name>
            <!-- name has be the same in servlet and servlet-mapping -->
</servlet>

<servlet-mapping>
    <servlet-name>name</servlet-name>
    <url-pattern>/servlet/MyServlet</url-pattern>
</servlet-mapping>




回答3:


You can Achieve this in web sphere.By Enabling Serve Servlet By Class Name property,need follow below step to do this. 1.Go to WebSphere Admin Console. 2.Right Click on the WebSphere Server --> Admin Console. 3.Click Servers --> Server Types --> WebSphere application servers --> server_name(name of your server name) --> Web Container Settings --> Web container. 4. Set custom property com.ibm.ws.webcontainer.disallowServeServletsByClassname value as false.



来源:https://stackoverflow.com/questions/5031018/how-to-invoke-a-servlet-without-mapping-in-web-xml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!