首页>代码>Spring MVC+swagger作为restful api的doc在线文档生成>/apidoc/src/main/java/com/spg/apidoc/controller/UserCtroller.java
package com.spg.apidoc.controller; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import com.alibaba.fastjson.JSON; import com.spg.apidoc.po.UserInfo; import com.spg.apidoc.service.UserService; import com.spg.apidoc.vo.BaseResultVo; import com.wordnik.swagger.annotations.ApiOperation; import com.wordnik.swagger.annotations.ApiParam; /** * 项目名称:apidoc * * @description: * @author Wind-spg * @create_time:2015年2月3日 上午10:37:04 * @version V1.0.0 * */ // @Api(basePath = "/", value = "userCtrl") @Controller(value = "userCtrl") public class UserCtroller extends BaseController { private static final Log LOGGER = LogFactory.getLog(UserCtroller.class); @Resource UserService userService; @ResponseBody @RequestMapping( value = "addUser", method = RequestMethod.POST, produces = "application/json; charset=utf-8") @ApiOperation(value = "添加用户", httpMethod = "POST", response = BaseResultVo.class, notes = "add user") public String addUser(@ApiParam(required = true, name = "postData", value = "用户信息json数据") @RequestParam( value = "postData") String postData, HttpServletRequest request) { LOGGER.debug(String.format("at function, %s", postData)); if (null == postData || postData.isEmpty()) { return super.buildFailedResultInfo(-1, "post data is empty!"); } UserInfo user = JSON.parseObject(postData, UserInfo.class); int result = userService.addUser(user); return buildSuccessResultInfo(result); } @ResponseBody @RequestMapping( value = "queryUserById", method = RequestMethod.GET, produces = "application/json; charset=utf-8") @ApiOperation(value = "根据用户ID查询用户信息") public String queryUserById(@ApiParam(required = true, name = "userId", value = "user id") @RequestParam( value = "userId") String userId, HttpServletRequest request) { UserInfo info = userService.queryUserById(Integer.parseInt(userId)); return buildSuccessResultInfo(info); } }
最近下载更多
开心灬愉悦 LV9
2021年5月2日
heqian LV17
2020年12月10日
912299793 LV21
2020年8月29日
青春的尾巴 LV3
2020年8月2日
153393366@ LV9
2019年7月16日
Damionchow LV4
2019年6月4日
1247879478 LV8
2019年1月17日
hanjinyu LV11
2018年10月15日
yeling123 LV5
2018年7月9日
longyang1 LV10
2018年7月1日
最近浏览更多
3334004690 LV10
6月24日
akittyboy LV9
2月25日
RrrReNax LV3
2023年7月18日
lipanlong LV10
2023年7月6日
IT达人 LV22
2023年2月16日
503382513 LV10
2022年12月5日
1358849392 LV21
2022年11月11日
neuwxr2015 LV8
2022年9月20日
crosa_Don LV18
2022年6月14日
xueying049 LV5
2022年5月9日