码迷,mamicode.com
首页 > 其他好文 > 详细

RESTEasy maven使用

时间:2018-01-01 14:33:18      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:bsp   nal   path   body   dep   media   zha   post   one   

添加依赖:

<dependency>
  <groupId>org.jboss.resteasy</groupId>
  <artifactId>resteasy-jaxrs</artifactId>
  <version>3.1.3.Final</version>
</dependency>

 

springboot resteasy

@Api("SwaggerUiContraller")
@Path("/swaggerUi")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Component
public class SwaggerUiContraller {


@POST
@ApiOperation("getUser")
@Path("/getUser")
public String getUser() {


return "zhangxiongfeng";
}



}

RESTEasy maven使用

标签:bsp   nal   path   body   dep   media   zha   post   one   

原文地址:https://www.cnblogs.com/zxf330301/p/8167217.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!