• javaWeb服务详解(含源代码,测试通过,注释) ——web.xml


    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" 
    	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_3_0.xsd">
      <display-name></display-name>	
      <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      <context-param>
    	<param-name>contextConfigLocation</param-name>
    	<param-value>classpath:applicationContext.xml</param-value>
      </context-param>
      
      <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
       </listener>
       <filter>
      	<filter-name>openSessionInViewFilter</filter-name>
      	<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
     	
     	<init-param>   
      
               <param-name>flushMode</param-name>   
      
               <param-value>AUTO</param-value>   
      
        </init-param>
     
      </filter>
      <filter-mapping>
      	<filter-name>openSessionInViewFilter</filter-name>
      	<url-pattern>/*</url-pattern>
      </filter-mapping>
      <servlet>
      <servlet-name>CXFServlet</servlet-name>
      <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
       <servlet-name>CXFServlet</servlet-name>
       <url-pattern>/services/*</url-pattern>
      </servlet-mapping>
      
    </web-app>
    

  • 相关阅读:
    MyBatis操作数据库(基本增删改查)
    CSS和jQuery分别实现图片无缝滚动效果
    jQuery学习
    ORACLE PL、SQL编程
    JavaScript_DOM详解
    JavaScript_DOM(文件对象模型)
    JavaScript 基础
    用javascript编写猜拳游戏(函数)
    用javascript编写简单银行取钱存钱流程(函数)
    用Java编写银行存钱取钱
  • 原文地址:https://www.cnblogs.com/a1111/p/12816232.html
Copyright © 2020-2023  润新知