RESTEasy 入门实例
1. 在Eclipse中建立Maven工程
1.1 新建Maven工程
1.2 选择默认工作空间
1.3 选择 maven-archetype-webapp Archetype
1.4 填写Group id,Artifact id,package
1.5 生成的web工程初始目录结构
2. 添加工程依赖
2.1 用Maven POM Editor 打开pom.xml文件,在Dependencies中添加依赖包
2.2 在查询栏中输入“resteasy-jaxrs”,在查询结果中选择版本3.0.0
2.3 保存pom.xml后,manvn从中央代码仓库自动下载依赖包
3. REST Service
4. Rest Application
6. Run AS -> run jetty
在这个例子中,web请求“http://localhost:8080/resteasy-example/hello”将匹配HelloWorldRestService,“http://localhost:8080/resteasy-example/hello/{任意值}”将匹配到方法参数@PathParam 参数