{}
やんごとなき事情でこういう空っぽのJSONを返す必要がある場合には空っぽの response 用の class を用意して JsonSerialize annotaion をつけてやるのが楽。
@JsonSerialize public class NantokaResponse { }
@RestController public class NantokaController { @GetMapping("/wei") public NantokaResponse wei() { return new NantokaResponse(); } }