java写接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java写接口相关的知识,希望对你有一定的参考价值。

1.先导spring包

技术分享

 

2.首先配置spring.xml的监听web.xml配置。

  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:Spring-Context.xml</param-value>
  </context-param>
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

3.配置spring.xml文件

//扫描的包(就是类的包名)

  <context:component-scan base-package="infis"/>

  <bean class="org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter">

                    //要暴露的接口
  <property name="baseAddress" value="http://192.168.10.183:8800/services/"/>
  </bean>

 4.就是实体类了

@Component
@WebService(serviceName="lmtService",targetNamespace="lmtCore")
public class LmtList {

@WebMethod
public String getLmtList(@WebParam(name="lmt",targetNamespace="lmtList")String lmtXml) {
System.out.println(lmtXml);
return "YES";
}

}

5.访问接口时要加上实体类的serviceName  例如以上访问地址:http://192.168.10.183:8800/services/lmtService   (把上面代码复制就可以运行)

















以上是关于java写接口的主要内容,如果未能解决你的问题,请参考以下文章

java中写一个接口,获取到地址中的数据应该怎么写?

java写的接口怎么调用

java语言 编写接口开发需要用到WebService么?

Java 写一个对外接口,通过URL 访问这个接口来得到判断!

java怎么写一个url接口让对方推送数据

JAVA中接口中的参数定义