본문 바로가기

두두의 IT/Today I Learned

[220623] JUnit, AWS RDS, 자료구조/알고리즘

728x90

1. 레거시 시스템에 JUnit 시도

https://jyj98020.tistory.com/430

 

Spring Boot Junit5

1. JUnit이란? 프로그래밍 언어마다 테스트를 위한 프레임워크가 존재합니다. 이러한 도구들을 보통 xUnit이라고 말합니다. 자바언어의 경우는 JUnit이라고 말합니다. 각 언어마다 사용되는 xUnit은

jyj98020.tistory.com

https://jyj98020.tistory.com/372

 

Spring Boot Main Annotation

@SpringBootApplication @ComponentScan("xx.xxx.*") @EnableJpaRepositories("xx.xxx.*") @EntityScan("xx.xxx.*") @MapperScan("xx.xxx.xxx") @EnableOAuth2Client @SpringBootApplication 스프링 부트의 가장..

jyj98020.tistory.com

https://jyj98020.tistory.com/373

 

Spring Boot Service Annotation

@Service @Slf4j @Autowired @PersistenceContext @Override @Transactional @PostConstruct @Component @Override 상속받은 메서드를 재정의할 때 메서드 이름이 틀리지 않게 쓰기 위한 어노테이션 컴파일러에게..

jyj98020.tistory.com

https://jyj98020.tistory.com/376

 

Spring Boot Mapper & Dao Annotation

스프링 빈 컨테이너에서 관리한다는 것은 개발자가 직접 인스턴스를 생성하지 않는다는 것을 의미합니다. 스프링 빈 컨테이너가 인스턴스를 생성해 관리한다는 것을 뜻합니다. 스프링 빈 컨테

jyj98020.tistory.com

 

2. 레거시 시스템과 AWS RDS 연결

 

3. 자료구조-힙, 알고리즘-정렬

https://jyj98020.tistory.com/428

 

[자료구조] 힙(Heap)

1. 힙 (Heap) 이란? - 힙: 데이터에서 최대값과 최소값을 빠르게 찾기 위해 고안된 완전 이진 트리(Complete Binary Tree)   - 완전 이진 트리: 노드를 삽입할 때 최하단 왼쪽 노드부..

jyj98020.tistory.com

https://jyj98020.tistory.com/10

 

[알고리즘] 정렬 - (선택/삽입/퀵/계수/버블/라이브러리)

정렬 (sorting) 이란? - 정렬 (sorting): 어떤 데이터들이 주어졌을 때 이를 정해진 순서대로 나열하는 것 - 정렬은 프로그램 작성시 빈번하게 필요로 함 - 다양한 알고리즘이 고안되었

jyj98020.tistory.com