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

Commit 7fbaabd

Browse files
committed
Add new resources
1 parent 391cf96 commit 7fbaabd

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,20 @@
22
The list of tutorials on Dependency Injection, Aspect-Oriented programming, and Spring MVC
33

44
### Pre-conditions :heavy_exclamation_mark:
5-
You're supposed to have at least good knowledge on Java SE
5+
You're supposed to have at least good knowledge on Java SE
6+
7+
### Related information :information_source:
8+
#### Overview
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) :books:
10+
* **1.1** Simplifying Java development. *(Advantages of Spring)*
11+
* **1.2** Containing your beans. *(A bean lifecycle)*
12+
#### Bean configuration
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)<img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/image/logo_transparent_background.png" height=20/>
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) :books:
15+
* **2.2.1** Creating discoverable beans *(`@Component`)*
16+
* **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)*

jpa-tx-management/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# <img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/image/logo_transparent_background.png" height=50/>Spring ORM and Transaction management
2+
This is the tutorial on Spring ORM, Declarative Tx management and PlatformTransactionManager configuration
3+
4+
### Pre-conditions :heavy_exclamation_mark:
5+
You're supposed to be familiar with Spring IoC
6+
### Related materials :heavy_exclamation_mark:
7+
* [`@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=20/>
8+
* [`@Repository`](shttps://docs.spring.io/spring-framework/docs/current/spring-framework-reference/data-access.html#dao-annotations) <img src="https://spring.io/img/homepage/icon-spring-framework.svg" height=20/>
9+
10+
##

0 commit comments

Comments
 (0)