开发者

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

开发者 https://www.devze.com 2023-02-11 22:31 出处:网络
How to invoke a simple servlet using the followin开发者_如何学编程g URL: http://localhost:8080/servlet/MyServlet

How to invoke a simple servlet using the followin开发者_如何学编程g 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.


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


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>


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.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号