91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

《Java Restful Web Service實戰》第一版 高清PDF+源碼

資源截圖

代碼片段和文件信息

package?my.restful;

import?org.glassfish.grizzly.http.server.HttpServer;
import?org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
import?org.glassfish.jersey.server.ResourceConfig;

import?java.io.IOException;
import?java.net.URI;

/**
?*?Main?class.
?*
?*/
public?class?Main?{
????//?base?URI?the?Grizzly?HTTP?server?will?listen?on
????public?static?final?String?base_URI?=?“http://localhost:8080/myapp/“;

????/**
?????*?Starts?Grizzly?HTTP?server?exposing?JAX-RS?resources?defined?in?this?application.
?????*?@return?Grizzly?HTTP?server.
?????*/
????public?static?HttpServer?startServer()?{
????????//?create?a?resource?config?that?scans?for?JAX-RS?resources?and?providers
????????//?in?my.restful?package
????????final?ResourceConfig?rc?=?new?ResourceConfig().packages(“my.restful“);

????????//?create?and?start?a?new?instance?of?grizzly?http?server
????????//?exposing?the?Jersey?application?at?base_URI
????????return?GrizzlyHttpServerFactory.createHttpServer(URI.create(base_URI)?rc);
????}

????/**
?????*?Main?method.
?????*?@param?args
?????*?@throws?IOException
?????*/
????public?static?void?main(String[]?args)?throws?IOException?{
????????final?HttpServer?server?=?startServer();
????????System.out.println(String.format(“Jersey?app?started?with?WADL?available?at?“
????????????????+?“%sapplication.wadl\nHit?enter?to?stop?it...“?base_URI));
????????System.in.read();
????????server.stop();
????}
}


?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\
?????文件?????????137??2016-08-13?19:57??jax-rs2-guide-II-master\.gitignore
?????文件??????????72??2016-08-13?19:57??jax-rs2-guide-II-master\.travis.yml
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\
?????文件????????2627??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\pom.xml
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\main\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\main\java\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\main\java\my\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\main\java\my\restful\
?????文件????????1435??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\main\java\my\restful\Main.java
?????文件?????????562??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\main\java\my\restful\MyResource.java
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\test\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\test\java\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\test\java\my\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\test\java\my\restful\
?????文件????????1320??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-service\src\test\java\my\restful\MyResourceTest.java
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\
?????文件????????2294??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\pom.xml
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\java\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\java\my\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\java\my\restful\
?????文件?????????654??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\java\my\restful\MyDomain.java
?????文件????????1084??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\java\my\restful\MyResource.java
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\webapp\
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\webapp\WEB-INF\
?????文件?????????984??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\webapp\WEB-INF\web.xml
?????文件?????????239??2016-08-13?19:57??jax-rs2-guide-II-master\1.5.my-first-webapp\src\main\webapp\index.jsp
?????目錄???????????0??2016-08-13?19:57??jax-rs2-guide-II-master\1.6.1.myrest-servlet2-webxml\
............此處省略798個文件信息

評論

共有 條評論