webservice

—注解:@WebService(SEI 和 SEI 的实现类)
—注解:@WebMethod(SEI中的所有方法)

lib包中放入jar包

选择which上面和下面的jar包,build path


image.png
WEB-INF 放入web.xml
放入applicationContext.xml

创建接口

@WebService(targetNamespace="http://www.neusoft.com/")
public interface WsHello{
    public String sayHello(String xmldata);
}

创建实现类

import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.BindingType;

import com.xxx.testWS.WsHello;

@WebService(targetNamespace="http://www.xxx.com/",endpointInterface="com.xxx.testWS.WSHello",serviceName="hello")
@BindingType(value=javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING)
public class WsHelloImpl implements WsHello{
    @WebMethod
    public String sayHello(String xmlData) {
        return null;
    }
}

修改applicationContext.xml


image.png

创建启动类

import javax.xml.ws.Endpoint;
import com.xxx.service.referrals.impl.ReferralsServiceImpl;
public class qdTest {
    public static void main(String[] args) {
        String address = "http://localhost:8890/router/ws?wsdl";
        Endpoint.publish(address, new  ReferralsServiceImpl());
        System.out.println("发布成功");
      }
}
image.png

调用类

import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
import org.dom4j.Document;
import org.dom4j.io.SAXReader;

import com.xxx.service.referrals.ReferralsService;

public class test {
    public static void main(String[] args) {
        // 初始化代理工厂
        JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
        // 定义服务接口类型
        factory.setServiceClass(ReferralsService.class);
        // 设置服务地址
        factory.setAddress("http://localhost:8890/router/ws?wsdl"); 
        ReferralsService client = (ReferralsService) factory.create();
        try {
             //读取xml文件
            SAXReader reader = new SAXReader();
            //取得xml内容转为document对象
            Document document = reader.read("e:\\1.xml");
            //将document对象转换为String
            String xml = document.asXML();
            //调用业务
            client.getReferralsInfoByIdCard(xml);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

执行到webservice实体类中 调用dao

import javax.jws.WebService;
import javax.xml.ws.BindingType;

import com.xxx.dao.referrals.GetReferralsInfo;


@WebService(targetNamespace="http://www.xxx.com/",endpointInterface="com.xxx.service.referrals.ReferralsService",serviceName="referrals")
@BindingType(value=javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING)
public class ReferralsServiceImpl {
    
        public String getReferralsInfoByIdCard(String xmldata) {
            String reqXml = null;
            GetReferralsInfo gri = new GetReferralsInfo();
            reqXml = gri.getReferralsList(xmldata);
            return reqXml;
        }
}

dao层(需要用到SwitchsetXml,(获取前后部分),Referrals(实体类),C3P0Utils(获取数据库连接))

import java.lang.reflect.InvocationTargetException;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;

import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.MapListHandler;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;

import com.neusoft.assemble.SwitchsetXml;
import com.xxx.tableBean.Referrals;
import com.xxx.util.C3P0Utils;

public class GetReferralsInfo {
    //接数据的实体类对象
    Referrals referrals = new Referrals();

    @SuppressWarnings("deprecation")
    public String getReferralsList(String xmldata){//获取到传来的 str 入参xml
        
        Document docXml = null;
        //拼接xml标签字符串的工具类
        SwitchsetXml switchset = new SwitchsetXml();
        //身份证号
        String idCardNumValue = null;
        QueryRunner qr = new QueryRunner();
        //获取数据库链接
        Connection conn = C3P0Utils.getConnection();
        //xml文件
        StringBuffer str = new StringBuffer();
        //xml前部分文件
        StringBuffer str1 = new StringBuffer();
        //xml后部分文件
        StringBuffer str2 = new StringBuffer();
        try {
            //把str的xml入参 再转成document类型
            docXml = DocumentHelper.parseText(xmldata);
        } catch (DocumentException e) {
            e.printStackTrace();
        }
        //调用SwitchsetXml</standardcode>之前的前部分xml
        str1 = switchset.assembleXmlBefore(docXml);
        //获取根节点
        Element rootNode = docXml.getRootElement();
        //获取跟节点下的business节点
        Element businessNode = rootNode.element("business");
        Element businessdataNode = businessNode.element("businessdata");
        Element datasetsNode = businessdataNode.element("datasets");
        Element setdetailsNode = datasetsNode.element("setdetails");
        idCardNumValue = setdetailsNode.element("cert_num").getText();
        System.out.println("获取到身份证号"+idCardNumValue);
        
        String sql1 = "select * from  REFERRALS where cert_num = ?";
        Object[] parm = {idCardNumValue};
        
        List<Map<String, Object>> list1;
        try {

            list1 = qr.query(conn, sql1, parm, new MapListHandler());
            
            if (list1.size() < 0 || list1.isEmpty()) {
                
            }else{
                try {
                    //获取到查询数据放入referrals中
                    BeanUtils.populate(referrals, list1.get(0));
                } catch (IllegalAccessException | InvocationTargetException e) {
                    e.printStackTrace();
                }
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
        //xml前部分
        str.append(str1);
        //拼接中间带查询数据的部分
        str.append("<datacompress>0</datacompress>");
        str.append("<businessdata>");
        str.append("<dmp>");
        str.append("<datasets>");
        str.append("<setcode/>");
        str.append("<settype/>");
        str.append("<setdetails>");
        str.append("<certtype_code>");
        str.append(referrals.getCERTTYPE_CODE());
        str.append("</certtype_code>");
        str.append("<certtype_name>");
        str.append(referrals.getCERTTYPE_NAME());
        str.append("</certtype_name>");
        str.append("<cert_num>");
        str.append(referrals.getCERT_NUM());
        str.append("</cert_num>");
        str.append("<name>");
        str.append(referrals.getSELF_NAME());
        str.append("</name>");
        str.append("<sex_code>");
        str.append(referrals.getSEX_CODE());
        str.append("</sex_code>");
        str.append("<sex_name>");
        str.append(referrals.getSEX_NAME());
        str.append("</sex_name>");
        str.append("<age>");
        str.append("</age>");
        //调用switchset获取后半段
        str2 = switchset.assembleXmlAfter();
        str.append(str2);
        System.out.println(str.toString());
        return str.toString();
    }
}

c3p0.config.xml

<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
    <default-config>
        <property name="driverClass">oracle.jdbc.driver.OracleDriver</property>
        <property name="jdbcUrl">jdbc:oracle:thin:@localhost:1521:orcl</property>
        <property name="user">scott</property>
        <property name="password">tiger</property>
        <property name="initialPoolSize">5</property>
        <property name="maxPoolSize">50</property>
    </default-config>
</c3p0-config>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,179评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,229评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,032评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,533评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,531评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,539评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,916评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,813评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,568评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,654评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,354评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,918评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,152评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,852评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,378评论 2 342

推荐阅读更多精彩内容