為什么要寫這篇貼?
要寫一個最簡單的CRUD 符合 Restful Api 規范的 一個Controller, 想百度搜索一下 直接復制拷貝 簡單修改一下 方法內代碼。
然而, 搜索結果讓我無語到家。 沒一個是正在符合 Restful Api 規范的實例。 最無語的是 你呀直接 JSP 頁面了,還說什么 Restful Api 啊!!!
為方便以后自己復制拷貝使用,我把自己剛寫的貼出來。
Swagger2:
@Configuration @EnableSwagger2 public class Swagger2 { @Bean public Docket createRestApi() { return new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo()) .select() .apis(RequestHandlerSelectors.basePackage("com.dj.edi.web")) .paths(PathSelectors.any()) .build(); } private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("EID 用戶 CRUD") .description("EID 用戶 CRUD") .version("1.0") .build(); } }
Application:
@SpringBootApplication @Import(springfox.bean.validators.configuration.BeanValidatorPluginsConfiguration.class) public class ComEdiOrderUserApplication { public static void main(String[] args) {SpringApplication.run(ComEdiOrderUserApplication.class, args);} }
UserApiController:
@RestController @RequestMapping("/v1/user") public class UserApiController { private static final Logger LOGGER = LoggerFactory.getLogger(UserApiController.class); @Autowired private ClientUsersRepository repository; @ApiOperation(value = "獲取所有用戶數據") @RequestMapping(value = "/list", method = RequestMethod.GET) public ResponseEntity<List<ClientUsers>> getClientUsersList() { try { return ResponseEntity.ok(repository.findAll()); } catch (Exception e) { LOGGER.info(" 獲取所有用戶數據異常 " + e.getMessage(), e); return ResponseEntity.status(500).body(null); } } @ApiOperation(value = "獲取用戶數據") @ApiImplicitParam(name = "id", value = "用戶ID", required = true, dataType = "String", paramType = "path") @RequestMapping(value = "/{id}", method = RequestMethod.GET) public ResponseEntity<ClientUsers> getClientUsers(@PathVariable String id) { try { return ResponseEntity.ok(repository.findOne(id)); } catch (Exception e) { LOGGER.info(" 獲取用戶數據 " + id + " 數據異常 " + e.getMessage(), e); return ResponseEntity.status(500).body(null); } } @ApiOperation(value = "創建用戶", notes = "根據User對象創建用戶") @ApiImplicitParam(name = "users", value = "用戶詳細實體user", required = true, dataType = "ClientUsers", paramType = "body") @RequestMapping(method = RequestMethod.POST) public ResponseEntity<ClientUsers> createUser(@Valid @RequestBody ClientUsers users) { try { users.setId(ObjectId.get().toString()); return ResponseEntity.ok(repository.save(users)); } catch (Exception e) { LOGGER.info(" 創建用戶 " + users + " 數據異常 " + e.getMessage(), e); return ResponseEntity.status(500).body(null); } } @ApiOperation(value = "更新用戶詳細信息", notes = "根據url的id來指定更新對象,並根據傳過來的user信息來更新用戶詳細信息") @ApiImplicitParams({ @ApiImplicitParam(name = "id", value = "用戶ID", required = true, dataType = "String", paramType = "path"), @ApiImplicitParam(name = "user", value = "用戶詳細實體user", required = true, dataType = "ClientUsers", paramType = "body") }) @RequestMapping(value = "{id}", method = RequestMethod.PUT) public ResponseEntity<ClientUsers> updateUser(@PathVariable("id") String id,@Valid @RequestBody ClientUsers user) { try { user.setId(id); return ResponseEntity.ok(repository.save(user)); } catch (Exception e) { LOGGER.info(" 更新用戶 " + user + " 數據異常 " + e.getMessage(), e); return ResponseEntity.status(500).body(null); } } @ApiOperation(value = "刪除用戶", notes = "根據url的id來指定刪除對象") @ApiImplicitParam(name = "id", value = "用戶ID", required = true, dataType = "String", paramType = "path") @RequestMapping(value = "{id}", method = RequestMethod.DELETE) public ResponseEntity<String> deleteUser(@PathVariable String id) { try { repository.delete(id); return ResponseEntity.ok("ok"); } catch (Exception e) { LOGGER.info(" 刪除用戶 " + id + " 數據異常 " + e.getMessage(), e); return ResponseEntity.status(500).body(null); } } }
ClientUsersRepository:
@Component public interface ClientUsersRepository extends MongoRepository<ClientUsers, String> { ClientUsers findByips(String ip); ClientUsers findByclientFlag(String clientFlag); }
ClientUsers:
@Data public class ClientUsers implements Serializable { @Id private String id; /** * 用戶名稱 */ @NotBlank(message = "用戶名稱 不能為空") @Pattern(regexp = "^(?!string)",message = "不能是 stirng") private String userName; /** * ip */ @NotNull(message = "ip 至少需要個") private List<String> ips; /** * 標識 */ @NotBlank(message = " 標識 不能為空") @Pattern(regexp = "^(?!string)",message = "不能是 stirng") private String clientFlag; /** * 客戶服務ID */ @NotBlank(message = "客戶服務ID 不能為空") @Pattern(regexp = "^(?!string)",message = "不能是 stirng") private String checkID; }
有哪里不好的希望指正