전체 글

전체 글

    [JPA] hibernate bytecode enhancement 적용시 발생하는 오류 해결 (Failed to apply plugin 'org.hibernate.orm', gradle, kotlin)

    발단OneToOne 관계를 맺은 테이블에서 Lazy Initialization 을 의도하였으나 의도한 바대로 동작하지 않고 FetchType.Eager 처럼 동작하여 이를 해결하기 위해 적용한 bytecode enhancement plugin 이 찾을 수 없다는 이유로 적용되지 않는 이슈를 해결하는 과정입니다. 환경Spring Boot 3.2.5data-jpa-starterhibernate-core 6.4.4.Final OneToOne 사용시 FetchType.Lazy 가 의도대로 동작하지 않는 이유 [JPA] bytecode instrumentation 을 이용한 lazy loading 활성화-10. @OneToOne 의 양방향 연관 관계 다대일, 일대다, 다대다 와는 다르게 @OneToOne 매핑은 ..

    [Spring Boot] Spring Security 설정 과정에서 `please use permitAll via HttpSecurity#authorizeHttpRequests instead` 문구 발생(feat. ignoring)

    발단spring security 를 적용하여 web 의 static resource 에 대한 접근시  권한과 무관하게끔 처리 하기 위한 설정으로 ignoring 을 사용하였는데 제목과 같은 문구가 발생하여 이를 제거하며 최적화한 과정을 정리합니다. 환경Spring Boot 3.1 Spring Security 6.1 # Spring Boot 3.1 버전 이상의 환경에서의 적용을 설명합니다. 문제 내용@Beanfun webSecurityCustomizer(): WebSecurityCustomizer { return WebSecurityCustomizer { web: WebSecurity -> web.ignoring().requestMatchers("/api/v1/test1") }}위 ..

    [Spring] Custom Enum Value 를 Swagger 문서에 노출시키고 싶으면 어떻게 해야할까?

    발단swagger 를 통해 서버의 문서를 작성하던 중 Enum 타입으로 정의한 값을 제공하려 할 때 의도한 값이 문서에 노출되지 않고 Enum 으로 정의했던 변수의 이름이 노출되고 있어 이를 수정하기 위해 시도하였습니다.  라이브러리 문서문서를 통해 enum 에 대한 값을 변화하는 기능은 현재 제공하고 있지 않은듯 합니다. OpenAPI 3 Library for spring-bootLibrary for OpenAPI 3 with spring boot projects. Is based on swagger-ui, to display the OpenAPI description.Generates automatically the OpenAPI file.springdoc.org 코드enum class TestEnu..

    [WSL] 가동중인 Ubuntu Image 의 계정 비밀번호 초기화 방법

    발단서버로 사용중이던 PC 의 비밀번호가 기억나지 않아 기록합니다.  해결방법Windows OS 환경에서 root 로 wsl 에 접근하여 초기화 default image 의 초기화 일 경우wsl -u root (루트 계정으로 로그인)passwd {계정} (계정에는 root 혹은 수정하고자 하는 계정을 입력해주시면 됩니다.) default image 가 아닌 경우wsl -l -v (사용중인 배포판을 확인합니다.)wsl -d {배포판명} -u root ... (배포판명을 입력하고 default image 와 같이 접근하면 됩니다.) 참고 How to reset my WSL Ubuntu password?I forgot my WSL Ubuntu password, needed to run sudo command...

728x90