LoginSignup
4
1

More than 5 years have passed since last update.

SpringBootのREST APIのリクエスト/レスポンスをCamelCaseからSankeCaseに変更する

Posted at

背景

JSON APIがSnakeCaseが採用されているため
詳細は、翻訳: WebAPI 設計のベストプラクティスを参照のこと

設定

SpringBoot 2.0.5.RELEASEであれば、application.ymlで記載すればよい。

application.yml
spring:
  jackson:
    property-naming-strategy: SNAKE_CASE
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1