What is the recommended project structure for spring boot rest projects?

前端 未结 9 1714
迷失自我
迷失自我 2020-12-07 09:29

I\'m a beginner with spring boot. I\'m involved in the beginning of a project where we would build rest services using spring boot. Could you please advise the recommended d

9条回答
  •  广开言路
    2020-12-07 10:06

    config - class which will read from property files

    cache - caching mechanism class files

    constants - constant defined class

    controller - controller class

    exception - exception class

    model - pojos classes will be present

    security - security classes

    service - Impl classes

    util - utility classes

    validation - validators classes

    bootloader - main class

提交回复
热议问题