- 论坛徽章:
- 0
|
咨询猫小
To deploy a servlet must doing like below:
Create a subdirectory called classes under the following directory:
WL_HOME\samples\server\examples\build\mainWebApp,
where WL_HOME is the WebLogic Server install directory.
Copy your servlet class file into the following directory:
WL_HOME\samples\server\examples\build\mainWebApp\classes.
If your servlet class has a package statement, create an additional subdirectory for each level of the package statement. For example, if your package statement is package color.blue, then place your servlet class in the following directory:
WL_HOME\samples\server\examples\build\mainWebApp\WEB-INF\classes\color\blue.
If you do not have a servlet class to use for this Fast Track procedure, follow the instructions in Programming WebLogic HTTP Servlets to create a simple one.
Modify the web.xml file located in the WL_HOME\samples\server\examples\build\mainWebApp directory by adding the following, in between the <web-app>; and </web-app>; tags:
- <servlet>;
- <servlet-name>;
- myServlet
- </servlet-name>;
- <servlet-class>;
- package.name.myServlet
- </servlet-class>;
- </servlet>;
- <servlet-mapping>;
- <servlet-name>;
- myServlet
- </servlet-name>;
- <url-pattern>;
- quickStartServlet
- </url-pattern>;
- </servlet-mapping>;
复制代码
where:
myServlet is the name of your servlet class file.
package.name.myServlet is the full package name of your servlet class.
Save the web.xml file.
Start WebLogic Server. Windows NT users can use the Start Menu shortcut labeled Launch Examples Server.
Call your servlet from a Web browser with the following URL:
http://localhost:port/quickStartServlet
where:
localhost is the host name of the machine running WebLogic Server
port is the port number where WebLogic Server is listening for requests.
quickStartServlet is the value of the <url-pattern>; element that you defined in the web.xml file in step 3. |
|