You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,26 @@ The list of tutorials on Dependency Injection, Aspect-Oriented programming, and
4
4
### Pre-conditions :heavy_exclamation_mark:
5
5
You're supposed to have at least good knowledge on Java SE
6
6
7
-
### Related information:information_source:
7
+
### Related resources:information_source:
8
8
#### Overview
9
9
*[Spring in Action](https://www.amazon.com/Spring-Action-Covers-4/dp/161729120X/ref=sr_1_1?s=books&ie=UTF8&qid=1538391717&sr=1-1&keywords=spring+in+action):green_book:
10
10
***1.1** Simplifying Java development. *(Advantages of Spring)*
11
11
***1.2** Containing your beans. *(A bean lifecycle)*
12
12
#### Bean configuration
13
13
*[Spring IoC and Dependency Injection tutorial](https://github.com/bobocode-projects/spring-framework-tutorial/tree/master/ioc-basics#spring-ioc-and-dependency-injection-tutorial)<imgsrc="https://raw.githubusercontent.com/bobocode-projects/resources/master/image/logo_transparent_background.png"height=20/>
14
14
*[Spring in Action](https://www.amazon.com/Spring-Action-Covers-4/dp/161729120X/ref=sr_1_1?s=books&ie=UTF8&qid=1538391717&sr=1-1&keywords=spring+in+action):green_book:
***2.2.3** Setting a base package for component scanning. *(`@ComponentScan`)*
18
-
***2.2.4** Annotating beans to be automatically wired. *(Configuring dependency injection with `@Autowired`)*
19
-
***2.3.1** Creating a configuration class. (`@Congifuration`)
20
-
***2.3.2** Declaring a simple bean. (Explicit Java configuration using `@Bean`)
21
-
***2.3.3** Injecting with JavaConfig. *(Java config file features)*
17
+
***2.2.3** Setting a base package for component scanning. *([`@ComponentScan`](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-scanning-autodetection))*
18
+
***2.2.4** Annotating beans to be automatically wired. *(Configuring dependency injection with [`@Autowired`](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-autowired-annotation))*
19
+
***2.3.1** Creating a configuration class. ([`@Congifuration`](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-java-configuration-annotation))
20
+
***2.3.2** Declaring a simple bean. (Explicit Java configuration using [`@Bean`](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-java-bean-annotation))
21
+
***2.3.3** Injecting with JavaConfig. *(Java config file features)*
22
+
#### ORM
23
+
*[Spring in Action](https://www.amazon.com/Spring-Action-Covers-4/dp/161729120X/ref=sr_1_1?s=books&ie=UTF8&qid=1538391717&sr=1-1&keywords=spring+in+action):green_book:
24
+
***11.2.1** Configuring an entity manager factory. *(How to configure JPA without persistence.xml?)*
25
+
***11.2.2** Writing a JPA-based repository. *(How to create DAO using [`@Repository`](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/data-access.html#dao-annotations)?)*
26
+
***10.1.1** Getting to know Spring’s data-access exception hierarchy. *(Why Spring wraps SQL checked exceptions?)*
27
+
#### Transaction management
28
+
*[Understanding the Spring Framework’s Declarative Transaction Implementation](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/data-access.html#tx-decl-explained) <imgsrc="https://spring.io/img/homepage/icon-spring-framework.svg"height=15/>
Copy file name to clipboardExpand all lines: ioc-basics/README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,5 @@ This is the tutorial on Spring IoC, ApplicationContext configuration and Depende
3
3
4
4
### Pre-conditions :heavy_exclamation_mark:
5
5
You're supposed to be familiar with *Inversion of Control* and *Dependency Injection* pattern
6
-
##
6
+
### Related resources :information_source:
7
+
*[Instantiating the Spring Container by Using AnnotationConfigApplicationContext](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-java-instantiating-container) <imgsrc="https://spring.io/img/homepage/icon-spring-framework.svg"height=15/>
0 commit comments