jar的加载

来源:互联网 发布:树莓派3linux armv7l 编辑:程序博客网 时间:2024/06/06 19:48

1 网上查询jar 的pom文件配置

  在hm-service里写service,需要用到

org.apache.axis2.AxisFault;
org.apache.axis2.addressing.EndpointReference;
org.apache.axis2.client.Options;
org.apache.axis2.client.ServiceClient;

org.apache.axis2.transport.http.HTTPConstants;


则  将

<dependency>  
            <groupId>org.apache.axis2</groupId>  
            <artifactId>axis2</artifactId>  
            <version>1.5.1</version>  
            <type>pom</type>  
            <scope>compile</scope>  
        </dependency>  
        <dependency>  
            <groupId>org.apache.axis2</groupId>  
            <artifactId>axis2-adb</artifactId>  
            <version>1.5.1</version>  
            <type>jar</type>  
            <scope>compile</scope>  
        </dependency>  
        <dependency>  
            <groupId>org.apache.axis2</groupId>  
            <artifactId>axis2-kernel</artifactId>  
            <version>1.5.1</version>  
            <type>jar</type>  
            <scope>compile</scope>  
        </dependency>  
        <dependency>  
               <groupId>org.apache.axis2</groupId>  
               <artifactId>org.apache.axis2.osgi</artifactId>  
               <version>1.5.1</version>  
        </dependency>

加到hm-core的pom.xml中。

eclipse自动编译;

2,在文件中引用就可以了。



原创粉丝点击