파란하늘의 지식창고
반응형
article thumbnail
Spring Boot Data Redis 사용해보기
Study/Java 2021. 6. 9. 14:48

Spring Boot 기반에서 Redis를 사용하는 방법 Spring Boot 2.5.0 기준으로 작성함 dependency 설정 org.springframework.boot spring-boot-starter-data-redis redis는 connectionFactory로 Lettuce와 Jedis 두 가지를 제공한다. default로 Lettuce를 제공하고 만약 Jedis를 사용하고 싶은 경우 아래처럼 설정하면 된다. org.springframework.boot spring-boot-starter-data-redis io.lettuce lettuce-core redis.clients jedis Bean 설정 Spring Boot의 RedisAutoConfiguration은 RedisTemplate..

Spring Boot 2.5 Release Notes
Study/Java 2021. 5. 26. 07:52

전체 Release Notes 목록은 이 곳에서 확인할 수 있습니다. https://luvstudy.tistory.com/tag/Release%20Notes Spring Boot 2.5 Release Notes spring-projects/spring-boot spring-projects/spring-boot Spring Boot. Contribute to spring-projects/spring-boot development by creating an account on GitHub. github.com Upgrading from Spring Boot 2.4 SQL Script DataSource Initialization 지원 schema.sql 및 data.sql script에 사용되는 근본적인 m..

Spring Reference Documentation 한글 번역
Study/Java 2021. 4. 13. 04:55

google이 번역을 참 잘해주긴 하지만 asciidoc으로 생성된 문서의 code tag가 있는 문장의 경우 code tag 부분은 번역을 하지 않으면서 번역이 깨지는 현상이 있다. code tag 영역을 번역하지 않는건 당연한 동작이지만 해당 tag의 위치가 깨지는 것 때문에 번역된 문장을 이해하기 힘든 경우가 많아 공부할 겸 간간히 구글 번역한 내용을 문서로 만들어두고 있다. 이후 문서 버전이 변경되는 경우 관리를 어떻게 할지는 아직 고민하지 않았지만 혹시 도움이 되는 경우가 있을까 싶어 이곳에 공유해본다. 번역해둔 챕터는 현재 아래와 같다. Spring Framework Testing Spring Boot Logging Testing luversof.github.io/bluesky-docs/ Bl..

Spring Boot Logging
Study/Java 2021. 1. 4. 11:07

Spring Boot Reference의 Logging 부분을 번역한 글입니다. 4. Logging Spring Boot Features Spring Boot Features Graceful shutdown is supported with all four embedded web servers (Jetty, Reactor Netty, Tomcat, and Undertow) and with both reactive and Servlet-based web applications. It occurs as part of closing the application context and is performed in the earliest docs.spring.io Spring Boot는 모든 내부 logging에 C..

Spring Boot Config Data Migration Guide
Study/Java 2020. 11. 18. 07:53

Spring Boot Config Data Migration Guide Spring Boot Config Data Migration Guide의 내용을 한글로 번역한 글입니다. spring-projects/spring-boot spring-projects/spring-boot Spring Boot. Contribute to spring-projects/spring-boot development by creating an account on GitHub. github.com 이 문서는 Spring Boot 2.4 이상에서 사용하기 위해 application.properties 및 application.yml 파일을 migration 하는데 도움을 주기 위한 것입니다. Overview Spring Boot ..

Spring Boot 2.4 Release Notes
Study/Java 2020. 11. 14. 03:23

전체 Release Notes 목록은 이 곳에서 확인할 수 있습니다. https://luvstudy.tistory.com/tag/Release%20Notes Spring Boot 2.4 Release Notes Spring Boot 2.4 Release Note의 내용을 한글로 번역한 글입니다. spring-projects/spring-boot spring-projects/spring-boot Spring Boot. Contribute to spring-projects/spring-boot development by creating an account on GitHub. github.com Upgrading from Spring Boot 2.3 Versioning Scheme change 2.4부터 Sp..

Spring Boot @ConditionalOnBean 조건 사용 시 주의해야할 점
Study/Java 2020. 10. 22. 09:35

AutoConfiguration bean 생성 순서에 따른 @ConditionalOnBean 조건 오류 문제 아래와 같은 경우가 있었다. @Configuration public class SampleAAutoConfiguration { @Bean public SomeAClass SomeAClass() { return new SomeAClass(); } } @Configuration public class SampleBAutoConfiguration { @Bean @ConditionalOnBean(SomeAClass.class) public SomeBClass someBClass() { return new SomeBClass(); } } 코드 상으로 보면 SampleBConfiguration의 SomeAC..

Spring Boot가 2.3.x 이후 build tool을 Gradle로 바꾸다.
Study/Java 2020. 7. 14. 08:45

spring-framework project는 이미 오랜 기간 동안 Gradle을 사용하였다. (그전에 Ivy를 쓴 적도 있던 것으로 기억한다.) spring-boot project의 경우 줄곧 maven을 사용하였다. (이것도 무슨 이유였는지 찾아보진 않았다...) 그런데 이번 2.3.x 버전 이후 spring-boot project도 build tool을 gradle로 변경하였다. https://github.com/spring-projects/spring-boot/issues/19608 Port the build to Gradle · Issue #19608 · spring-projects/spring-boot Dismiss Join GitHub today GitHub is home to over 50..

Spring Boot Dynamic Bean 등록
Study/Java 2020. 6. 25. 07:14

Spring Boot는 설정을 자동화해주어 많은 부분에서 편리하지만 datasource 설정 같은 것들은 단일 설정에 대해서 자동화를 제공해주어 여러 datasource를 사용하는 경우 개별 설정해야 한다. 비슷한 설정을 반복 선언하여 사용하는 것도 불편하여 properties에 설정이 있으면 자동으로 빈을 생성해주는 처리가 있었으면 하는 요구사항이 생기게 된다. 예를 들어 mongo를 사용하는 경우 Spring이 제공하는 기본 설정은 다음과 같다. spring.data.mongodb.host=127.0.0.1 spring.data.mongodb.port=27017 spring.data.mongodb.authentication-database=admin spring.data.mongodb.username..

[troubleshooting] 아직 명확한 해결법을 찾지 못한 Spring Boot web No ServletContext set 에러 현상
Study/Java 2020. 6. 5. 19:57

spring boot 2.3.0에서 아무것도 없이 빈 web을 띄울 때 아래 에러가 발생했다. 자체 구현한 autoConfigure 모듈을 사용한 아무것도 없는 빈 프로젝트 구축의 경우였다. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'resourceHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Bean instantiation via factory method ..

반응형