MVN証明証を無視してコンパイルするコマンド:
参考URL
// @formatter:off /** 名前 */ private Long name; /** ID */ private Long id; // @formatter:on
chrome.exe --user-data-dir="C:/Chrome dev session" --disable-web-security
他の環境、マックユーザーなどの場合は、
ChromeのプラグインCORSをインストールして、
後そのプラグインの設定のところ、「Enable cross-origin resource sharing 」ONにすれば解決できるはずです。
CORSのプラグインURLは以下の通りです。
https://chrome.google.com/webstore/detail/allow-control-allow-origi/nlfbmbojpeacfghkpbjhddihlkkiljbi?hl=en-US)
@RequestMapping(value = “/xxxx/{Id:.+}", method = RequestMethod.POST) @ResponseStatus(HttpStatus.OK) public void delete(@RequestHeader(“code") final String code, @PathVariable final String Id) throws ApplicationException{ // 処理 try { } catch (ApplicationException e) { } } }
Spring Data JPAでselect IN-clause クエリーの使い方
@Query(value = "SELECT * FROM User WHERE id IN (:ids)", nativeQuery = true) Set<User> findByIdInSet(@Param("ids") Set<Long> ids);