Server
-
Apache James + AWS EC2 메일 서버 구축Server/Spring Boots 2021. 6. 30. 18:04
https://james.apache.org/ Apache James About James stands for Java Apache Mail Enterprise Server! It has a modular architecture based on a rich set of modern and efficient components which provides at the end complete, stable, secure and extendable Mail Servers running on the JVM. Create your o james.apache.org 메일 서버 구축을 테스트할 일이 생겨서 이런저런 자료를 찾던 중, Apache James를 찾게 되었다. 글 작성 당시의 최신 버전은 apache-jam..
-
Spring Security + CustomAuthenticationFilter 만들기Server/Spring Boots 2021. 5. 27. 18:03
참조자료 https://derekpark.tistory.com/101 spring security custom filter 인증 구현 http request 에서 custom filter 를 적용하여 특정 header 에 토큰을 담고 해당 토큰이 유효하면 인증된 요청이 되게끔 구현하고 싶었다. 스프링 사이트에서 표시된 이미지다. 솔직히 스프링에 대해서 제 derekpark.tistory.com https://imbf.github.io/spring/2020/06/29/Spring-Security-with-JWT.html Spring Security + JWT를 통해 프로젝트에 인증 구현하기 Spring Security와 JWT를 활용해서 프로젝트에 인증을 어떻게 구현했는지에 대해서 포스팅 하려고 한다. i..
-
Spring Boot Maven Multi Module 개발환경 설정하기Server/Spring Boots 2020. 11. 11. 19:17
spring.io/guides/gs/multi-module/ Creating a Multi Module Project this guide is designed to get you productive as quickly as possible and using the latest Spring project releases and techniques as recommended by the Spring team spring.io 멀티 모듈 프로젝트로 개발하게 되면 여러가지 장점이 있다. 공통의 모듈을 한 곳에서 관리함으로써 중복되는 소스 코드를 최소화하게 되며, 이에 따라 개발 할 때는 자신이 개발해야 하는 부분에 좀 더 촛점을 둘 수 있다. 장점에 대한 소개는 제쳐두고, 환경 세팅에 대해 고민해봤다. 1. m..
-
Spring Profile + Maven Profile + WAR파일 배포Server/Spring Boots 2020. 10. 21. 14:46
Maven Profile 세팅 dev true dev local local live live 스프링 프로필 세팅 한가지 중요한 것은 Maven Profile이랑 Spring Profile은 다르다는 것이다. Maven Profile은 Build 시점에서 사용되는 profile이고, spring.profiles.active는 Run Time에서 쓰이는 프로필이다. 때문에 이를 JAVA_OPTS 에 넣어서 런타임 시 실행하게 하는 방법이 보통 많이 쓰이고 있다. clean package -Plocal 빌드 시 Maven Profile 설정 export JAVA_OPTS="$JAVA_OPTS -Dspring.profiles.active=dev" Runtime용 스프링 profile 설정 JAVA_OPTS를 수..
-
[Spring boot] Class path contains multiple SLF4J bindings 에러Server/Spring Boots 2020. 10. 21. 13:44
참조 www.baeldung.com/slf4j-classpath-multiple-bindings SLF4J Warning: Class Path Contains Multiple SLF4J Bindings | Baeldung Learn about the SLF4J warning "Class path contains multiple SLF4J bindings" and how to fix it www.baeldung.com 에러 로그 SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:.../slf4j-log4j12-1.7.21.jar!/org/slf4j/impl/StaticLoggerBinder.class] ..
-
Spring Boot + Redis 삽질과 디버깅Server/Redis 2020. 10. 6. 23:53
레디스가 만능은 아니다 - Connection수를 최소화 하는 것이 중요하다. - Redis Set과 Redis List 1) Redis에 Multi Thread로 Push를 때리는 것은 위험천만하다. WAS에서 특정 데이터를 REDIS에 저장할 때, REDIS와 WAS 사이의 통신 속도 만큼 지연이 발생한다. 가령 유저가 방문했을 때 방문 히스토리를 REDIS에 쌓는다고 할 때, REDIS와 WAS사이에 30ms 의 지연이 발생한다면, 별도의 Thread에서 처리를 하지 않고, Main Thread에서 Redis에 Push를 하게 된다면 그 만큼 응답 속도는 30ms 만큼 느려지게 된다. "어? 그럼 Sub Thread에서 Push 때리면 되는 거 아냐?" Redis를 죽일 수 있는 1방의 코드 Thr..
-
스프링 부트 + 레디스 설정/ 테스트Server/Redis 2020. 9. 29. 15:46
@EnableRedisHttpSession @Configuration @PropertySource("classpath:application.properties") public class RedisConfig { @Value("${spring.redis.host}") private String redisHostName; @Value("${spring.redis.port}") private int redisPort; @Bean public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() { return new PropertySourcesPlaceholderConfigurer(); } @Bean public R..
-
CentOS 8.2 Redis 설치Server/Redis 2020. 9. 29. 10:08
참조자료 dejavuqa.tistory.com/350 Redis 설치 (on CentOS7) CentOS에 Redis를 설치해야 합니다. 언제나 그렇듯이 CentOS 버전부터 확인하고 갑니다. $ cat /etc/os-release NAME="CentOS Linux" VERSION="7 (Core)" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="7" PRETT.. dejavuqa.tistory.com 리눅스 버전 확인: CentOS 8.2 Last login: Mon Sep 28 08:14:27 2020 from 61.43.45.2 [~~~~@~~~~ ~]$ sudo su - Last login: Mon Sep 28 08:15:06 UTC 2020 on pts/0 [..