36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
|
||
|
<display-name>Heat Supply Data Collection</display-name>
|
||
|
|
||
|
<context-param>
|
||
|
<param-name>socket</param-name>
|
||
|
<param-value>20000</param-value>
|
||
|
</context-param>
|
||
|
|
||
|
<listener>
|
||
|
<listener-class>com.blxc.socket.server.listener.SocketListener</listener-class>
|
||
|
</listener>
|
||
|
|
||
|
<servlet>
|
||
|
<servlet-name>mvc</servlet-name>
|
||
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
||
|
<init-param>
|
||
|
<param-name>contextConfigLocation</param-name>
|
||
|
<param-value>classpath:application.xml, classpath:config.xml</param-value>
|
||
|
</init-param>
|
||
|
<load-on-startup>1</load-on-startup>
|
||
|
</servlet>
|
||
|
<servlet-mapping>
|
||
|
<servlet-name>mvc</servlet-name>
|
||
|
<url-pattern>*.do</url-pattern>
|
||
|
</servlet-mapping>
|
||
|
|
||
|
<welcome-file-list>
|
||
|
<welcome-file>index.html</welcome-file>
|
||
|
<welcome-file>index.htm</welcome-file>
|
||
|
<welcome-file>index.jsp</welcome-file>
|
||
|
<welcome-file>default.html</welcome-file>
|
||
|
<welcome-file>default.htm</welcome-file>
|
||
|
<welcome-file>default.jsp</welcome-file>
|
||
|
</welcome-file-list>
|
||
|
</web-app>
|