日期:2014-05-16 浏览次数:20394 次
# <?xml version="1.0" encoding="UTF-8"?> # <web-app version="2.5" # xmlns="http://java.sun.com/xml/ns/javaee" # xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" # xsi:schemaLocation="http://java.sun.com/xml/ns/javaee # http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> # # # <context-param> # <param-name>contextConfigLocation</param-name> # <param-value>classpath*:com/kt/application/application-context.xml</param-value> # </context-param> # # <listener> # <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> # </listener> # # <servlet> # <servlet-name>root-dispatcher</servlet-name> # <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> # <load-on-startup>1</load-on-startup> # </servlet> # # <servlet-mapping> # <servlet-name>root-dispatcher</servlet-name> # <url-pattern>*.do</url-pattern> # </servlet-mapping> # # <welcome-file-list> # <welcome-file>index.jsp</welcome-file> # </welcome-file-list> # </web-app>
# <?xml version="1.0" encoding="UTF-8"?> # # <beans xmlns="http://www.springframework.org/schema/beans" # xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" # xmlns:util="http://www.springframework.org/schema/util" # xmlns:lang="http://www.springframework.org/schema/lang" # xmlns:aop="http://www.springframework.org/schema/aop" # xmlns:tx="http://www.springframework.org/schema/tx" # xsi:schemaLocation=" # http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd # http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd # http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd # http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd # http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"> # # </beans>
# <?xml version="1.0" encoding="UTF-8"?> # # <beans xmlns="http://www.springframework.org/schema/beans" # xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" # xmlns:util="http://www.springframework.org/schema/util" # xmlns:lang="http://www.springframework.org/schema/lang" # xmlns:aop="http://www.springframework.org/schema/aop" # xmlns:tx="http://www.springframework.org/schema/tx" # xsi:schemaLocation=" # http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd # http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd # http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd # http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd # http://www.springframework.org/schema/aop http://www.springfra