일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AWS
- 로그인
- 보안
- exception
- 딥시크
- 허깅 페이스
- IntelliJ
- 코틀린
- API
- db
- PostgreSQL
- NGINX
- deepseek vs chatgpt
- postgis
- netty
- Spring Boot
- Spring
- 공동인증서
- Kotlin
- 인증
- ktlin
- webflux
- spring security
- 컨퍼런스
- 본인인증
- docker
- Mono
- 본인확인
- AOP
- Flux
- Today
- Total
목록Language & Framework/Spring (7)
[수미수의 개발 브로구]
Lombok 이란 Lombok을 사용하면, DTO 클래스 (엔티티, 도메인 등 데이터 모델)에서 수행해야 하는 다양한 설정들을 매우 간단하게 할 수 있음 자바 모델 객체 생성하는 데이 있어 getter, setter, toString 등의 메서드 설정 없이 처리 (기존 getter, setter, ToString은 자바빈 규약) 따라하기 의존성 추가 Lombok 을 사용하기 위해서는 의존성을 추가 해야 한다. 아래는 Maven 샘플이다. org.projectlombok lombok 1.18.2 provided 어노테이션 정리 1) @Data 관련 어노테이션들을 한번에 설정 (아래 참고) 2) @ToString 해당 메서드의 모든 필드를 출력하는 ToString 메서드 생성 3) @Getter / @Set..
오류 내용 스프링 실행 시 .w.s.m.s.DefaultHandlerExceptionResolver : Failure while trying to resolve exception [org.springframework.http.converter.HttpMessageNotWritableException] 오류가 발생 .w.s.m.s.DefaultHandlerExceptionResolver : Failure while trying to resolve exception [org.springframework.http.converter.HttpMessageNotWritableException] 해결 방안 ManyToOne 참조 부분에서 아래와 같이 변경 한다. ............... @JsonIdentityI..
오류 내용 스프링 어플리케이션 실행 시 Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 오류가 발생 *************************** APPLICATION FAILED TO START *************************** Description:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driv..