首頁 类库下载 java类库 jersey + tomcat 實作restful風格

jersey + tomcat 實作restful風格

Nov 02, 2016 pm 01:43 PM

環境:

idea 15.0.2

jersey 1.3

tomcat 7.0

maven 3.3.3

1.idea 基於

maven 3.3.3

1.idea 基於

maven 3.3.3

1.idea 基於完成專案。套件:

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-core</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-server</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-client</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.14</version>
        </dependency>
        <dependency>
            <groupId>javax.ws.rs</groupId>
            <artifactId>jsr311-api</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>asm</groupId>
            <artifactId>asm</artifactId>
            <version>3.2</version>
        </dependency>
登入後複製

3.建立pojo類 Student:

@XmlRootElement
public class Student {
    private int id;
    private String name;
    private String dept;

    public int getId() {
        return id;
    }

    public Student() {
    }

    public Student(int id, String name, String dept) {
        super();
        this.id = id;
        this.name = name;
        this.dept = dept;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getDept() {
        return dept;
    }
    public void setDept(String dept) {
        this.dept = dept;
    }

}
登入後複製

同時建立資源類別:jersey + tomcat 實作restful風格

@Path("/students")
public class RestWsDemo {
    private static Logger logger = Logger.getLogger(RestWsDemo.class);
    private static int index = 1;
    private static Map<Integer,Student> studentList = new HashMap<Integer, Student>();

    public RestWsDemo() {
        if(studentList.size()==0) {
            studentList.put(index, new Student(index++, "Frank",  "CS"));
            studentList.put(index, new Student(index++, "Jersey", "Math"));
        }
    }

    @GET
    @Path("{studentid}")
    @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
    public Student getMetadata(@PathParam("studentid") int studentid) {
        if(studentList.containsKey(studentid))
            return studentList.get(studentid);
        else
            return new Student(0, "Nil", "Nil");
    }

    @GET
    @Path("list")
    @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
    public List<Student> getAllStudents() {
        List<Student> students = new ArrayList<Student>();
        students.addAll(studentList.values());
        return students;
    }

    @POST
    @Path("add")
    @Produces("text/plain")
    public String addStudent(@FormParam("name") String name,
                             @FormParam("dept") String dept) {
        studentList.put(index, new Student(index++, name, dept));
        return String.valueOf(index-1);
    }

    @DELETE
    @Path("delete/{studentid}")
    @Produces("text/plain")
    public String removeStudent(@PathParam("studentid") int studentid) {
        logger.info("Receieving quest for deleting student: " + studentid);

        Student removed = studentList.remove(studentid);
        if(removed==null) return "failed!";
        else   return "true";
    }

    @PUT
    @Path("put")
    @Produces("text/plain")
    public String putStudent(@QueryParam("studentid") int studentid,
                             @QueryParam("name") String name,
                             @QueryParam("dept") String dept
    ) {
        logger.info("Receieving quest for putting student: " + studentid);
        if(!studentList.containsKey(studentid))
            return "failed!";
        else
            studentList.put(studentid, new Student(studentid, name, dept));

        return String.valueOf(studentid);
    }
}
登入後複製
建立完之後專案結構如圖:

4.webweb.xml 配置如下:

4. .sun.jersey.config.property.packages 的屬性值是你資源所在的包的路徑jersey + tomcat 實作restful風格

5.maven install 略過

6.啟動tomcat 訪問路徑 http://localhost:8081/rest/students/list就看以看到以下結果:


7.其他資源取得方式自行領悟、測試


 

🎜🎜🎜🎜🎜🎜
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
4 週前 By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解鎖Myrise中的所有內容
1 個月前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)