WebService在ssm框架中的簡單應用

WebService的概念

Web service是一個平臺獨立的,低耦合的,自包含的、基於可編程的web的應用程序,可以使用開放的XML(標準通用標記語言下的一個子集)標準來描述、發佈、發現、協調和配置這些應用程序,用於開發分佈式的互操做的應用程序。
最近學習了webservice給本身作個學習記錄。要是有不懂的同窗能夠看看我這篇博客。固然前提是你已經學習了spring框架,最好是學習了ssm框架。
webservice和java比較像,由於他主要是xml文件在不一樣系統中進行溝通,具備跨平臺性。我這裏主要學習的是RPC遠程調用,須要服務器暴露出接口給客戶端實現,接口比較安全。
首先在maven中依賴webservice的jar包
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-frontend-jaxws</artifactId>
    <version>3.1.8</version>
</dependency>
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-transports-http</artifactId>
    <version>3.1.8</version>
</dependency>
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-core</artifactId>
    <version>3.1.8</version>
</dependency>

而後在interface接口中使用@WebService註解暴露接口

在服務器的war工程中建立springbean的配置文件,命名空間選上beans,context,jaxws三個,貼代碼(當你的interface使用了webservice註解時你就須要在cxf配置文件中配置,將接口暴露出去,注意jaxws中配置的是繼承了的serviceImpl(關於這一點我還不是很瞭解)):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jaxws="http://cxf.apache.org/jaxws"
    xsi:schemaLocation="http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    <jaxws:server address="user">
        <jaxws:serviceBean>
            <ref bean="xxxxServiceImpl" />
        </jaxws:serviceBean>
    </jaxws:server>
    
</beans>

配置文件寫完了記得在服務端的war工程中的web.xml中配置,要否則是掃描不到你的配置文件的,因爲服務端沒有用到springmvc,就須要用到tomcat監聽器了。固然還要加上webservice自帶的中央控制器。

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    version="2.5">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext_*.xml</param-value>
    </context-param>

    <!-- Bootstraps the root web application context before servlet initialization -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- 加入cxf 這個框架的 給咱們提供的 一箇中央控制器 -->
    <!-- cxf webservices -->
    <servlet>
        <servlet-name>cxf</servlet-name>
        <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>cxf</servlet-name>
        <url-pattern>/service/*</url-pattern>
    </servlet-mapping>
</web-app>

好了,服務端到這裏還不算完成哦,還須要mvn -install,將整個項目打包到倉庫纔算是大功告成,接下來是客戶端的配置。客戶端差不了多少,這裏先明確須要解決的問題:當系統一分爲二時怎麼在客戶端調用服務端的service,spring確定不能直接注入。

那麼上面的打包就起到做用了首先,在maven依賴你上傳到服務器的jar包 (注意是依賴接口就行,須要哪些接口只要MAVEN -INSTALL後均可以依賴):

<dependency>
            <groupId>com.tym</groupId>
            <artifactId>xxx_interface</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
依賴接口後就須要在客戶端一樣配置一個spring的bean文件和服務端同樣,這裏貼上代碼(若是寫的 serviceClass 是正確的按住ctrl鼠標懸浮時能夠進入該類,須要幾個就配幾個,id是隨便起名的):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jaxws="http://cxf.apache.org/jaxws"
    xsi:schemaLocation="http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
        <jaxws:client id="userclient"       
        serviceClass="com.tym.service.UsersService" 
        address="http://localhost:8082/service/user"/>
</beans>
最後須要在客戶端的web.xml文件中配置,同樣的須要tomcat啓動時就掃描配置文件,而且掃描spring的配置文件和請求接受:
<servlet>
        <servlet-name>springDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:applicationContext_*.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- Map all requests to the DispatcherServlet for handling -->
    <servlet-mapping>
        <servlet-name>springDispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

最後就能夠在客戶端的controller中調用服務端的service了,記得帶上跨域的註解,由於服務器調用時域名變了,屬於跨域了。跨域在controller後加上

@Controller
@CrossOrigin(origins="*",maxAge=3600)
public class UserController {

@Autowired
private UsersService usersService;
}

這樣子就是一個最簡單的webservice了,能夠用客戶端調用服務端的service。

相關文章
相關標籤/搜索