Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit 28c4aa7

Browse files
committedOct 2, 2018
Update resources list
1 parent 03455bf commit 28c4aa7

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed
 

‎README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,26 @@ The list of tutorials on Dependency Injection, Aspect-Oriented programming, and
44
### Pre-conditions :heavy_exclamation_mark:
55
You're supposed to have at least good knowledge on Java SE
66

7-
### Related information :information_source:
7+
### Related resources :information_source:
88
#### Overview
99
* [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:
1010
* **1.1** Simplifying Java development. *(Advantages of Spring)*
1111
* **1.2** Containing your beans. *(A bean lifecycle)*
1212
#### Bean configuration
1313
* [Spring IoC and Dependency Injection tutorial](https://github.com/bobocode-projects/spring-framework-tutorial/tree/master/ioc-basics#spring-ioc-and-dependency-injection-tutorial)<img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/image/logo_transparent_background.png" height=20/>
1414
* [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:
15-
* **2.2.1** Creating discoverable beans *(`@Component`)*
15+
* **2.2.1** Creating discoverable beans *([`@Component`](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-stereotype-annotations))*
1616
* **2.2.2** Naming a component-scanned bean
17-
* **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) <img src="https://spring.io/img/homepage/icon-spring-framework.svg" height=15/>
29+
* [Using @Transactional](https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/data-access.html#transaction-declarative-annotations) <img src="https://spring.io/img/homepage/icon-spring-framework.svg" height=15/>

‎ioc-basics/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ This is the tutorial on Spring IoC, ApplicationContext configuration and Depende
33

44
### Pre-conditions :heavy_exclamation_mark:
55
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) <img src="https://spring.io/img/homepage/icon-spring-framework.svg" height=15/>

0 commit comments

Comments
 (0)