├── LICENSE ├── README.md ├── aspect-oriented-programming └── README.md ├── dependency-injection └── README.md ├── hibernate ├── README.md └── scripts │ ├── 01-one-to-one-uni.sql │ ├── 02-one-to-one-bi.sql │ ├── 03-one-to-many.sql │ ├── 04-one-to-many-uni.sql │ └── 05-many-to-many.sql ├── inversion-of-control └── README.md ├── maven └── README.md ├── overview └── README.md ├── scopes-lifecycle └── README.md ├── setup-dev-environment ├── README.md ├── hibernate-tutorial │ └── hibernate.cfg.xml ├── mysql │ ├── create-user.sql │ └── student-tracker.sql └── spring-mvc-demo │ ├── config │ ├── spring-mvc-demo-servlet.xml │ └── web.xml │ └── lib │ ├── commons-logging-1.2.jar │ ├── javax.servlet.jsp.jstl-1.2.1.jar │ └── javax.servlet.jsp.jstl-api-1.2.1.jar ├── spring-boot └── README.md ├── spring-mvc └── README.md ├── spring-rest └── README.md └── spring-security └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/README.md -------------------------------------------------------------------------------- /aspect-oriented-programming/README.md: -------------------------------------------------------------------------------- 1 | # Aspect-Oriented Programming -------------------------------------------------------------------------------- /dependency-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/dependency-injection/README.md -------------------------------------------------------------------------------- /hibernate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/hibernate/README.md -------------------------------------------------------------------------------- /hibernate/scripts/01-one-to-one-uni.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/hibernate/scripts/01-one-to-one-uni.sql -------------------------------------------------------------------------------- /hibernate/scripts/02-one-to-one-bi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/hibernate/scripts/02-one-to-one-bi.sql -------------------------------------------------------------------------------- /hibernate/scripts/03-one-to-many.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/hibernate/scripts/03-one-to-many.sql -------------------------------------------------------------------------------- /hibernate/scripts/04-one-to-many-uni.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/hibernate/scripts/04-one-to-many-uni.sql -------------------------------------------------------------------------------- /hibernate/scripts/05-many-to-many.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/hibernate/scripts/05-many-to-many.sql -------------------------------------------------------------------------------- /inversion-of-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/inversion-of-control/README.md -------------------------------------------------------------------------------- /maven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/maven/README.md -------------------------------------------------------------------------------- /overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/overview/README.md -------------------------------------------------------------------------------- /scopes-lifecycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/scopes-lifecycle/README.md -------------------------------------------------------------------------------- /setup-dev-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/README.md -------------------------------------------------------------------------------- /setup-dev-environment/hibernate-tutorial/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/hibernate-tutorial/hibernate.cfg.xml -------------------------------------------------------------------------------- /setup-dev-environment/mysql/create-user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/mysql/create-user.sql -------------------------------------------------------------------------------- /setup-dev-environment/mysql/student-tracker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/mysql/student-tracker.sql -------------------------------------------------------------------------------- /setup-dev-environment/spring-mvc-demo/config/spring-mvc-demo-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/spring-mvc-demo/config/spring-mvc-demo-servlet.xml -------------------------------------------------------------------------------- /setup-dev-environment/spring-mvc-demo/config/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/spring-mvc-demo/config/web.xml -------------------------------------------------------------------------------- /setup-dev-environment/spring-mvc-demo/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/spring-mvc-demo/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /setup-dev-environment/spring-mvc-demo/lib/javax.servlet.jsp.jstl-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/spring-mvc-demo/lib/javax.servlet.jsp.jstl-1.2.1.jar -------------------------------------------------------------------------------- /setup-dev-environment/spring-mvc-demo/lib/javax.servlet.jsp.jstl-api-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/setup-dev-environment/spring-mvc-demo/lib/javax.servlet.jsp.jstl-api-1.2.1.jar -------------------------------------------------------------------------------- /spring-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/spring-boot/README.md -------------------------------------------------------------------------------- /spring-mvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/spring-mvc/README.md -------------------------------------------------------------------------------- /spring-rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/spring-rest/README.md -------------------------------------------------------------------------------- /spring-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hsins-Learn/Spring-and-Hibernate-for-Beginners/HEAD/spring-security/README.md --------------------------------------------------------------------------------