@Async is not a silver bullet (@Async는 은 탄환이 아니다)
- private 메서드에는 적용이 안됨 (public만)
- self-invocation(자가 호출)해서는 안됨 (같은 클래스 내부의 메서드를 호출하는 것은 안됨)
- 리턴값에 대해서 void나 CompletableFuture<> 여야 함
참고
- https://jeong-pro.tistory.com/187
@Async is not a silver bullet (@Async는 은 탄환이 아니다)
백업
1. Spring Boot?
- 스프링 프레임워크를 사용하는 프로젝트를 쉽게 설정할 수 있도록 해주는 서브 프로젝트
2. Spring Boot의 특징
- 단독으로 스프링 애플리케이션을 생성
- Tomcat, Jetty, Undertow 를 내장
- 빌드 구성을 단순화하기 위해 'starter' 종속성 제공
- 스프링과 3th party 라이브러리를 가능한 자동적으로 설정
- 상용화에 필요한 metrics, health checks, externalized configuration 같은 기능 제공
- XML 설정을 생성하지 않고 요구하지 않음
1. Spring Initializr 로 Spring Boot 프로젝트 생성
1.1. Generator
- Spring Initializr 사이트 접속 ( https://start.spring.io/ )
( 2021년 1월 설정 화면 ) |
plugins { // 스프링부트 의존성 관리 및 애플리케이션 패키징을 위한 Gradle 플러그인 id "org.springframework.boot" version "2.4.1" // 스프링부트 버전에 대해 의존성을 자동으로 가져옴 id "io.spring.dependency-management" version "1.0.10.RELEASE" id "java" } group = "com.chakans" version = "0.0.1-SNAPSHOT" // 자바 버전 선언 sourceCompatibility = "11" repositories { mavenCentral() } // 프로젝트와 의존 관계에 있는 라이브러리 정의 dependencies { implementation "org.springframework.boot:spring-boot-starter" implementation "org.springframework.boot:spring-boot-starter-web" testImplementation ("org.springframework.boot:spring-boot-starter-test") { exclude group: "org.junit.vintage", module: "junit-vintage-engine" } } test { useJUnitPlatform() }
3. Application.java
3.1. @SpringBootApplication
- @EnableAutoConfiguration, @ComponentScan, @Configuration을 하나로 묶은 것이라 볼 수 있음
- 해당 어노테이션이 있는 package위치를 기준으로 ComponentScan을 수행함 ( 기준 package 위치 변경 가능 )
- main 메소드 위치하는 곳임
4. index.html
- resources > static 하위에 index.html 파일 생성
A 서버 -------------------------------------- B 서버 |
$ sudo apt update && sudo apt install tinc
$ sudo mkdir -p /etc/tinc/sample/hosts
$ sudo vim /etc/tinc/sample/tinc.conf
-- A 서버
-------------------------
Name = tinc_a Device = /dev/net/tun AddressFamily = ipv4 Interface = tun0 -------------------------
-- B 서버
Name = tinc_b Device = /dev/net/tun AddressFamily = ipv4 Interface = tun0-------------------------ConnectTo = tinc_a-------------------------
-- A 서버
$ sudo vim /etc/tinc/sample/hosts/tinc_a
------------------------- Address = 172.17.0.2 Subnet = 100.100.100.100 -------------------------
-- B 서버 $ sudo vim /etc/tinc/sample/hosts/tinc_b ------------------------- Address = 172.17.0.3 Subnet = 100.100.100.200 -------------------------
$ sudo tincd -n sample -K 4096
-- A 서버
$ sudo vim /etc/tinc/sample/tinc-up-------------------------#!/bin/sh ip link set $INTERFACE up ip addr add 100.100.100.100 dev $INTERFACE ip route add 100.100.100.0/24 dev $INTERFACE-------------------------$ sudo vim /etc/tinc/sample/tinc-down-------------------------#!/bin/sh ip route del 100.100.100.0/24 dev $INTERFACE ip addr del 100.100.100.100 dev $INTERFACE ip link set $INTERFACE down--------------------------- B 서버$ sudo vim /etc/tinc/sample/tinc-up-------------------------#!/bin/sh ip link set $INTERFACE up ip addr add 100.100.100.200 dev $INTERFACE ip route add 100.100.100.0/24 dev $INTERFACE-------------------------$ sudo vim /etc/tinc/sample/tinc-down-------------------------#!/bin/sh ip route del 100.100.100.0/24 dev $INTERFACE ip addr del 100.100.100.200 dev $INTERFACE ip link set $INTERFACE down-------------------------
$ sudo chmod -v +x /etc/tinc/sample/tinc-{up,down}
$ sudo vim /etc/systemd/system/tinc.service ------------------------- [Unit] Description=Tinc net sample After=network.target [Service] Type=simple WorkingDirectory=/etc/tinc/sample ExecStart=/sbin/tincd -n sample -D -d3 ExecReload=/sbin/tincd -n sample -kHUP TimeoutStopSec=5 Restart=always RestartSec=60 [Install] WantedBy=multi-user.target -------------------------
$ sudo systemctl enable tinc.service
$ sudo systemctl status tinc.service
-- A 서버
$ scp /etc/tinc/sample/hosts/tinc_a user@172.17.0.2:/tmp/ $ ssh -t user@172.17.0.2 sudo mv -v /tmp/tinc_a /etc/tinc/sample/hosts/
-- B 서버
$ scp /etc/tinc/sample/hosts/tinc_b user@172.17.0.3:/tmp/
$ ssh -t user@172.17.0.3 sudo mv -v /tmp/tinc_b /etc/tinc/sample/hosts/
-- A 서버 & B 서버
$ sudo tincd -n sample -D -d3
$ sudo ip a
$ ping 100.100.100.***
$ mkdir -p ~/eosio && cd ~/eosio $ git clone --recursive https://github.com/EOSIO/eos
$ cd ~/eosio/eos
$ git submodule update --init --recursive
$ sudo mkdir -p /home/eosio
$ sudo chown ${USER}:${USER} /home/eosio
$ cd ~/eosio/eos $ ./scripts/eosio_build.sh -i /home/eosio/eos/2.0
$ cd ~/eosio/eos $ sudo ./scripts/eosio_install.sh
$ cd ~/eosio/eos $ sudo ./scripts/eosio_uninstall.sh
$ cd ~/eosio/eos/build $ make test