목록Web Study (30)
Rylah's Study & Daily Life
1. SQL 중심적인 개발의 문제점 현재 데이터베이스 세계의 헤게모니를 관계형 DB가 가지고 있다(Oracle, MySQL, ...). 지금 시대에는 객체를 관계형 DB에 관리하고 있다는 이야기이다. 관계형 DB를 사용하려면 SQL을 짜야한다. 계속, SQL 중심적인 개발을 하게되면 아래와 같은 문제점이 있다. 무한 반복, 지루한 코드 객체 CRUD(insert, update, select, delete) INSERT INTO MEMBER(MEMBER_ID, NAME) VALUES ... SELECT MEMBER_ID, NAME FROM MEMBER M UPDATE MEMBER SET ... public class Member { private String memberId; private String n..
https://covenant.tistory.com/256 완벽정리! Junit5로 예외 테스트하는 방법 환경 구성 testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeClasspath - Runtime classpath of source set 'test'. +--- org.springframework.boot:spring-boot-starter-web.. covenant.tistory.com 환경 구성 testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeClasspath - Runtime classpath of s..

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 const job_1 = () => { const b = Math.random() * 100 setTimeout( () => { console.log("job1 log : " + b) }, b) } const job_2 = () => { const b = Math.random() * 100 setTimeout( () => { console.log("job2 log : " + b) }, b) } const job_3 = () => { const b = Math.random() * 100 setTimeout( () => { console.log("job3 log : " + b) }, b) }..

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 class Queue { constructor() { this.a = [] } front() { if (this.a.length == 0){ console.log("Queue is Empty") return } else return this.a[0] } enQueue(value) { this.a.push(value) } deQueue() { if (this.a.length == 0) { console.log("Queue is Empty") return } this.a.shift() } }..

1 2 3 4 5 6 7 8 9 10 11 12 const 조건 = e => e.height >= 180 const 친구들 = [ {"name" : "Knight", "height" : 173}, {"name" : "Mage", "height" : 175}, {"name" : "Archer", "height" : 180}, {"name" : "Saint", "height" : 190}, ] const 키큰친구 = 친구들.find(조건) console.log(키큰친구) const 키큰친구인덱스 = 친구들.findIndex(조건) console.log(키큰친구인덱스) cs 이와 같이 친구들 배열에서 Knight, Mage, Archer, Saint 네 친구가 있다고 가정하자. 여기서 find를 조건으로해서 ..
Java beanDefinitionName = appConfig beanDefinitionGeneric bean: class [hello.core.AppConfig$$EnhancerBySpringCGLIB$$ad42d7f4]; scope=singleton; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null beanDefinitionName = memberService beanDefinitionRoot bean:..
보호되어 있는 글입니다.

Spring Boot에서는 Log를 찍는데 SLF4J와 Logback을 기본으로 라이브러리를 포함해서 제공한다. 그렇다면 Logback은 무엇일까? 우아한테코톡에서 이와 같은 사항이 진행되었고 발표자분이 블로그에 게시한 포스팅을 발견했다. 우아한테크코스 3기 백엔드 출신이신 검프님이 작성하신 로깅 관련된 글이다. 출처: https://livenow14.tistory.com/64?category=1009785 [Logging] Logback이란? 블로그를 작성하고, 테코톡을 진행했어요. 더 쉽게 이해하고 싶다면 아래 영상을 시청해주세요! [10분 테코톡] ☂️ 검프의 Logging(로깅) #2 Logback 로깅 프레임워크 중 하나로, SLF4J의 구현체에요. SL livenow14.tistory.com ..