What are the DAO, DTO and Service layers in Spring Framework?

后端 未结 5 1832
陌清茗
陌清茗 2020-12-12 10:29

I am writing RESTful services using spring and hibernate. I read many resource in internet, but they did not clarify my doubts. Please explain me in details what are DAO

5条回答
  •  离开以前
    2020-12-12 11:20

    DTO is the @Entity annotation in Spring
    DAO is the @Repository annotation in Spring (With Spring Boot JPA you just need to implement the interface now you don't need the annotations)
    Service is the @Service annotation in Spring

    You can read more here: Accessing Data with JPA

提交回复
热议问题