About Servlet
For security purposes, WebLogic running in WebLogic must be registered in weblogic. properties before it can run. For example, Servlet http: // localhost: 7001/helloWorld,
Its registration items in weblogic. properties are
Weblogic. httpd. register. helloWorld = examples. servlets. HelloWorldServlet
Actually, the actual path of this Servlet is
/Weblogic/myserver/servletclasses/examples/servlets/HelloWorldServlet. class
Check the registration items in weblogic. properties and the path of the HelloWorldServlet. class file. It is not difficult to find out the rules of registering Servlet.
There are several Servlet registration items in weblogic. properties:
Weblogic. httpd. register. AdminEvents = admin. AdminEvents
Weblogic. httpd. register. AdminClients = admin. AdminClients weblogic. httpd. register. AdminConnections = admin. AdminConnections weblogic. httpd. register. AdminJDBC = admin. AdminJDBC
Weblogic. httpd. register. AdminLicense = admin. AdminLicense
Weblogic. httpd. register. AdminMain = admin. AdminMain
Weblogic. httpd. register. AdminProps = admin. AdminProps
Weblogic. httpd. register. AdminRealm = admin. AdminRealm
Weblogic. httpd. register. AdminThreads = admin. AdminThreads weblogic. httpd. register. AdminVersion = admin. AdminVersion
This is the Servlet used by the Administrator to manage WebLogic. Access http: // localhost: 7001/AdminMain through URL. In the displayed authentication dialog box, enter system and. password. system = password, you can go to the WebLogic Web management interface for management.