CrudRepository/JpaRepository/PagingAndSortingRepository之间的区别

继承关系:

graphviz代码:

digraph graphname {
    subgraph clusterA {
        node [shape=plaintext,style=filled];
        CrudRepository  -> PagingAndSortingRepository -> JpaRepository [arrowhead=normal,arrowtail=dot];
        
        label = "继承关系";
        color=blue
    }
}

dot -Tpng test.dot -o test.png

Reference:

[1]CrudRepository JpaRepository PagingAndSortingRepository之间的区别

猜你喜欢

转载自blog.csdn.net/appleyuchi/article/details/108965783
今日推荐