You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.3 KiB
62 lines
2.3 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2019. 黄钰朝
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
|
|
version="4.0">
|
|
|
|
<!-- <servlet>-->
|
|
<!-- <servlet-name>MyServlet</servlet-name>-->
|
|
<!-- <servlet-class>com.hyc.wechat.controller.impl.servlet.MyServlet</servlet-class>-->
|
|
<!-- <multipart-config>-->
|
|
<!-- <location>C:\Users\Misterchaos\Documents\Java Develop Workplaces\IDEA workspace\wechat\out\artifacts\wechat_war_exploded\upload</location>-->
|
|
<!-- </multipart-config>-->
|
|
<!-- </servlet>-->
|
|
<!-- <servlet-mapping>-->
|
|
<!-- <servlet-name>MyServlet</servlet-name>-->
|
|
<!-- <url-pattern>/wechat/*</url-pattern>-->
|
|
<!-- </servlet-mapping>-->
|
|
<context-param>
|
|
<param-name>log4jConfigLocation</param-name>
|
|
<param-value>classpath:log4j.properties</param-value>
|
|
</context-param>
|
|
<jsp-config>
|
|
<taglib>
|
|
<taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri>
|
|
<taglib-location>/WEB-INF/fmt.tld</taglib-location>
|
|
</taglib>
|
|
<taglib>
|
|
<taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
|
|
<taglib-location>/WEB-INF/c.tld</taglib-location>
|
|
</taglib>
|
|
|
|
<taglib>
|
|
<taglib-uri>http://java.sun.com/jsp/jstl/sql</taglib-uri>
|
|
<taglib-location>/WEB-INF/sql.tld</taglib-location>
|
|
</taglib>
|
|
|
|
<taglib>
|
|
<taglib-uri>http://java.sun.com/jsp/jstl/x</taglib-uri>
|
|
<taglib-location>/WEB-INF/x.tld</taglib-location>
|
|
</taglib>
|
|
|
|
</jsp-config>
|
|
|
|
</web-app>
|
|
|