首頁  >  文章  >  类库下载  >  jersey + tomcat 實作restful風格

jersey + tomcat 實作restful風格

高洛峰
高洛峰原創
2016-11-02 13:43:283309瀏覽

環境:

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