Is Spring annotation @Controller same as @Service?

后端 未结 9 1844
夕颜
夕颜 2020-12-12 10:40

Is Spring annotation @Controller same as @Service?

I have idea about @Controller which can be used for URL mappin

9条回答
  •  囚心锁ツ
    2020-12-12 11:08

    • Controller will handle the navigation between the different views. Your mappings request mappings are handled with the help of controller.
    • Service interacts directly with the repository where usually the business logic is performed. You can add, delete, remove etc at the service layer

提交回复
热议问题