如何使用Maven創(chuàng)建一個(gè)Jersey REST 服務(wù)?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站制作、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的萬(wàn)載網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
創(chuàng)建項(xiàng)目
使用 archetypeGroupId 為 org.glassfish.jersey.archetypes 的原型,archetypeArtifactId為 jersey-quickstart-grizzly2 的原型,創(chuàng)建REST服務(wù)項(xiàng)目,使用IDEA創(chuàng)建項(xiàng)目如下:
點(diǎn)擊OK后,使用該原始模型創(chuàng)建項(xiàng)目。
運(yùn)行服務(wù)
項(xiàng)目創(chuàng)建好后,原始模型已經(jīng)默認(rèn)創(chuàng)建了一個(gè)REST服務(wù),我們可以直接啟動(dòng)REST服務(wù),進(jìn)入項(xiàng)目的根目錄,執(zhí)行如下命令構(gòu)建和啟動(dòng)服務(wù):
mvnpackage
mvnexec:java
會(huì)啟動(dòng)REST服務(wù),可以隨時(shí)通過(guò)回車鍵停止服務(wù),輸出如下:
六月 19, 2017 11:12:23 下午 org.glassfish.grizzly.http.server.NetworkListener start
信息: Started listener bound to [localhost:8080]
六月 19, 2017 11:12:23 下午 org.glassfish.grizzly.http.server.HttpServer start
信息: [HttpServer] Started.
Jersey app started with WADL available at http://localhost:8080/myapp/application.wadl
Hit enter to stop it…
還提供了 WADL,通過(guò)訪問(wèn) application.wadl 可以獲取當(dāng)前REST服務(wù)公布的接口:
<resources base="http://localhost:8080/myapp/"> <resource path="myresource"> <method id="getIt" name="GET"> <response> <representation mediaType="text/plain"/> </response> </method> </resource> </resources>
訪問(wèn)服務(wù)
可以直接訪問(wèn) http://localhost:8080/myapp/myresource 就可以訪問(wèn)REST服務(wù),直接訪問(wèn)REST服務(wù),會(huì)輸出 Got it! 。
項(xiàng)目說(shuō)明
啟動(dòng)服務(wù)的命令 mvn exec:java,該命令實(shí)際調(diào)用了 exec-maven-plugin 插件定義的一個(gè)值為 java 的 goal ,用以觸發(fā)mainClass中的main函數(shù),插件配置如下:
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>org.drsoft.rest.Main</mainClass> </configuration> </plugin>
REST服務(wù)類為 MyResource,其 @Path 中定義了資源路徑,@GET中定義了GET方法getIt(),@Produces中定義了響應(yīng)的類型為普通字符串,示例代碼如下:
@Path("myresource") public class MyResource { @GET @Produces(MediaType.TEXT_PLAIN) public String getIt() { return "Got it!"; } }
REST服務(wù)的單元測(cè)試類MyResourceTest,在單元測(cè)試類中,在執(zhí)行單元測(cè)試前需要啟動(dòng)服務(wù),并使用Jersey Client中定義的方法來(lái)調(diào)用REST服務(wù),示例代碼如下:
public class MyResourceTest { private HttpServer server; private WebTarget target; @Before public void setUp() throws Exception { // start the server server = Main.startServer(); // create the client Client c = ClientBuilder.newClient(); // uncomment the following line if you want to enable // support for JSON in the client (you also have to uncomment // dependency on jersey-media-json module in pom.xml and Main.startServer()) // -- // c.configuration().enable(new org.glassfish.jersey.media.json.JsonJaxbFeature()); target = c.target(Main.BASE_URI); } @After public void tearDown() throws Exception { server.stop(); } @Test public void testGetIt() { String responseMsg = target.path("myresource").request().get(String.class); assertEquals("Got it!", responseMsg); } }
基于Servlet容器服務(wù)
創(chuàng)建項(xiàng)目
我們首選使用 archetypeGroupId 為 org.glassfish.jersey.archetypes 的原型,archetypeArtifactId為 jersey-quickstart-webapp 的原型,創(chuàng)建REST服務(wù)項(xiàng)目,使用 IDEA 創(chuàng)建項(xiàng)目如下:
運(yùn)行服務(wù)
由于這個(gè)是Web項(xiàng)目,沒(méi)有main函數(shù),因此必須部署到Servlet容器中,才能將其運(yùn)行,我們需要配置Tomcat,IDEA的配置如下:
點(diǎn)擊 Run菜單的 Edit Configuration,在打開的窗體中增加 Tomcat 服務(wù)配置,指定Tomcat 的安裝目錄,并設(shè)置當(dāng)前站點(diǎn)的部署的虛擬目錄名稱,如下:
點(diǎn)擊OK后,就配置好Servlet容器,可以運(yùn)行服務(wù)了
訪問(wèn)服務(wù)
服務(wù)啟動(dòng)后,我們可以訪問(wèn) http://localhost:8080/RESTWebAPP/webapi/myresource 來(lái)調(diào)用REST服務(wù),會(huì)輸出 Got it!
項(xiàng)目說(shuō)明
Web根目錄的名稱為webapp,默認(rèn)的Servlet容器版本為2.5,并且配置了WEB-INF/web.xml文件來(lái)配置REST服務(wù),web.xml配置如下:
<?xml version="1.0" encoding="UTF-8"?> <!-- This web.xml file is not required when using Servlet 3.0 container, see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html --> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <servlet-name>Jersey Web Application</servlet-name> <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> <init-param> <param-name>jersey.config.server.provider.packages</param-name> <param-value>org.drsoft.rest</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>Jersey Web Application</servlet-name> <url-pattern>/webapi/*</url-pattern> </servlet-mapping> </web-app>
看完上述內(nèi)容,你們掌握如何使用Maven創(chuàng)建一個(gè)Jersey REST 服務(wù)的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
分享名稱:如何使用Maven創(chuàng)建一個(gè)JerseyREST服務(wù)
網(wǎng)站URL:http://www.rwnh.cn/article40/jipdeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、商城網(wǎng)站、關(guān)鍵詞優(yōu)化、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)