https://github.com/beaniejoy/spring-project-demo
spring & spring boot demo project for studying
https://github.com/beaniejoy/spring-project-demo
Last synced: 4 months ago
JSON representation
spring & spring boot demo project for studying
- Host: GitHub
- URL: https://github.com/beaniejoy/spring-project-demo
- Owner: beaniejoy
- Created: 2021-05-19T09:27:15.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-06T12:03:59.000Z (about 4 years ago)
- Last Synced: 2025-01-17T05:26:24.243Z (6 months ago)
- Language: Java
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transaction Test
```java
@Transactional
public void test1() {
test2();
}
public void test2() {
//...
}
```
상위 클래스에 transaction 설정되어있으면 하위로 전이 가능
(반대는 안된다. transaction 기능이 아예 상실)