├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | #folders# 23 | target/ 24 | bin/ 25 | /neoDb* 26 | /data 27 | /src/main/webapp/WEB-INF/classes 28 | */META-INF/* 29 | .settings 30 | 31 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 32 | hs_err_pid* 33 | 34 | # classpath and project files 35 | .classpath 36 | .project 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is the codebase for the [Learn Spring Data](https://www.baeldung.com/learn-spring-data-course#master-class) course. 2 | 3 | Note that the code for each course module is hosted on its own branch, you'll have to switch to the branch corresponding to the module you're on, for example: `git checkout module1` 4 | 5 | ====== 6 | 7 | **LEARN SPRING**: If you're just starting out with Spring and Spring Boot, here's where you need to get started: ["Learn Spring"](https://bit.ly/github-ls) 8 | 9 | --------------------------------------------------------------------------------