Skip to content

Commit 57b2cdd

Browse files
committed
一文搞懂如何在 Spring Boot 中正确使用 JPA
1 parent f07022e commit 57b2cdd

File tree

331 files changed

+1177
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+1177
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions

docs/basis/springboot-jpa.md

Lines changed: 328 additions & 0 deletions

source-code/basis/jpa-demo/.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
HELP.md
2+
target/
3+
!.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**
5+
!**/src/test/**
6+
7+
### STS ###
8+
.apt_generated
9+
.classpath
10+
.factorypath
11+
.project
12+
.settings
13+
.springBeans
14+
.sts4-cache
15+
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
build/
29+
30+
### VS Code ###
31+
.vscode/

0 commit comments

Comments
 (0)