본문 바로가기

은밀한 블로깅

(47)
PostMan - [Dev] API Testing Tool https://www.postman.com/downloads/ Postman | The Collaboration Platform for API Development Simplify workflows and create better APIs – faster – with Postman, a collaboration platform for API development. www.postman.com
QueryDsl 참고 https://www.4te.co.kr/890?category=624359 QueryDSL 사용하기 JPA를 사용하면서 QueryDSL을 셋팅하고 사용하는 부분에 있어서 매번 헷깔려 정리한다. QueryDSL을 사용하기 위해서 build.gradle 파일에 아래의 내용을 추가 해 준다. plugins { ... id 'idea' id 'com.ewerk.gra.. www.4te.co.kr
[Refer] Readings https://www.baeldung.com/category/spring/spring-boot/ Spring Boot | Baeldung www.baeldung.com https://spring.io/guides#topical-guides Spring Level up your Java code and explore what Spring can do for you. spring.io https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-documentation Spring Boot Reference Documentation This section goes into more detail about how you should us..
spring-boot-starter-data-jpa 참고 https://doublesprogramming.tistory.com/260 JPA - 엔티티 매핑 ch04-entity-mapping.md 본 글은 자바 ORM 표준 JPA 프로그래밍를 읽고 개인적으로 학습한 내용 복습하기 위해 작성된 글로 내용상 오류가 있을 수 있습니다. 오류가 있다면 지적 부탁 드리겠습니다. JPA - 엔티티.. doublesprogramming.tistory.com https://www.baeldung.com/sql-logging-spring-boot Show Hibernate/JPA SQL Statements in Spring Boot | Baeldung Learn how you can configure logging of the generated SQL statement..
Lombok 참고 https://www.daleseo.com/lombok-popular-annotations/ [자바] 자주 사용되는 Lombok 어노테이션 Lombok 라이브러리에서 제공하는 어노테이션 중에서 자주 사용되는 어노테이션 위주로 살펴보도록 하겠습니다. 접근자/설정자 자동 생성제일 먼저 살펴볼 어노테이션은 @Getter와 @Setter 입니다.아마 Lombok에서 가장 많이 사용되는 어노테이션일 텐데요.예를 들어, xxx라는 필드에 선언하면 자동으로 getXxx()(boolean 타입인 경우, is www.daleseo.com 그래들 // Lombok compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' ..
Spring WebMVC Structure Concept 참고: https://onlyformylittlefox.tistory.com/category/Develop/Server 'Develop/Server' 카테고리의 글 목록 흔한 개발자의 발자취 onlyformylittlefox.tistory.com Controller URL(Request) Mapping Class 사용자가 브라우져에서 특정 URL로 요청한 Request를 메소드에 Mapping 하여 처리할 수 있도록 하는 역할 @Controller 스프링 컨텍스트에 Bean으로 등록될 수 있도록한다. @RestController 응답을 View가 아닌 응답 본문에 직접 씀 객체의 경우 httpmassageconverter를 통해 JSON 반환 @ResponsBody @Controller에서 특정 메서드만..
[TDD] Test Driven Development 테스트 주도 개발 참고: https://repo.yona.io/doortts/blog/issue/1 "TDD 실천법과 도구" 책 전체를 PDF 공개합니다. 2010년 6월에 출간되었던 "TDD 실천법과 도구" 책 전체를 PDF로 공개합니다. 책소개: http://naver.me/GaYZCDjD Updated --- - [1장 - 테스트주도개발 Test Driven Development](https://repo.yona.io/doortts/blog/issue/2) - 18.07.18 - [2장 - doortts/blog repo.yona.io 1. 항상 실패하는 테스트를 먼저 작성 2. 테스트가 통과흐는 프로덕션 코드 작성 3. 테스트가 통과하면 프로덕션 코드를 리팩토링
log4jdbc-log4j2 참고 : https://mine-it-record.tistory.com/205 [SPRING] log4j2.xml 설정 (feat. level) 스프링 로그를 보이지 않게 끄는 방법에 대해 알아보자 log를 설정할 때 level 이 쓰여있는 것이 보이는데 이 역시 단계가 존재한다. 높은 등급에서 낮은 등급으로의 6개의 로그 레벨을 가지며 지정한 레벨 등급.. mine-it-record.tistory.com https://www.callicoder.com/spring-boot-log4j-2-example/ How to use Log4j 2 with Spring Boot Learn how to integrate and configure Log4j 2 in Spring Boot applications with..