weblogic的中软代理的应用配置文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
	http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
	<servlet>


		<servlet-name>HttpClusterServlet</servlet-name>


		<servlet-class>


			weblogic.servlet.proxy.HttpClusterServlet


		</servlet-class>


		<init-param>


			<param-name>WebLogicCluster</param-name>


			<param-value>


				127.0.0.1:7007|127.0.0.1:7008


			</param-value>


		</init-param>


	</servlet>


	<servlet-mapping>


		<servlet-name>HttpClusterServlet</servlet-name>


		<url-pattern>/*</url-pattern>


	</servlet-mapping>
</web-app>

你可能感兴趣的:(weblogic的中软代理的应用配置文件)