zoukankan      html  css  js  c++  java
  • 使用axis2调用webservice需要导入的依赖

    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
    <axis2.version>1.6.2</axis2.version>
    </properties>

    <dependency>

    <groupId>org.apache.axis2</groupId>

    <artifactId>axis2</artifactId>

    <version>${axis2.version}</version>

    <type>pom</type>

    <scope>compile</scope>

    </dependency>

    <dependency>

    <groupId>org.apache.axis2</groupId>

    <artifactId>axis2-adb</artifactId>

    <version>${axis2.version}</version>

    <type>jar</type>

    <scope>compile</scope>

    </dependency>

    <dependency>

    <groupId>org.apache.axis2</groupId>

    <artifactId>axis2-kernel</artifactId>

    <version>${axis2.version}</version>

    <type>jar</type>

    <scope>compile</scope>

    </dependency>

    <dependency>

    <groupId>org.apache.axis2</groupId>

    <artifactId>axis2-transport-http</artifactId>

    <version>${axis2.version}</version>

    </dependency>

    <dependency>

    <groupId>org.apache.axis2</groupId>

    <artifactId>axis2-transport-local</artifactId>

    <version>${axis2.version}</version>

    </dependency>

  • 相关阅读:
    python-常用数据类型
    python入门篇
    Vue 架构
    Bootstrap Web框架
    策略模式
    Java线程安全总结
    JVM中线程状态转换图
    java 多线程并发系列之 生产者消费者模式的两种实现
    JVM 垃圾回收器详解
    MyISAM和InnoDB索引实现对比
  • 原文地址:https://www.cnblogs.com/rash/p/10226310.html
Copyright © 2011-2022 走看看