'springboot'에 대한 검색결과 3개
springboot와(과) 일치하는 검색결과가 없습니다.
제안:
- 모든 단어의 철자가 정확한지 확인하세요.
- 다른 검색어를 사용해 보세요.
- 더 일반적인 검색어를 사용해 보세요.
SpringBoot ehcache 간단 정리
SpringBoot ehcache 간단히 정리 @EnableCaching Spring Boot Applicatoin 설정에 @EnableCaching 을 추가한다. @SpringBootApplication @EnableCaching public class ApiApplication { public static void main(String[] args) { SpringApplication.run(ApiApplication.class, args); } } ehcache.xml 작성 ehcache.xml @Cacheable ehcache에 설정한 name을 value 값으로 입력한다. @Cacheable(value = "blacklist", key="#key") public ArrayList getBlack..
[IntelliJ]SpringBoot 로딩시 느린 경우
맥북에서 IntelliJ에서 SpringBoot로 작업할 때 로딩이 2분 이상 걸리는 경우 생긴다. I have a MacBook Pro 15 with Retina screen running macOS Sierra (10.12).This happens when I use the stable IntelliJ IDEA 16, or the EAPs including IntelliJ IDEA 16 2.6 and 3. Solution: Make sure /etc/hosts contains the following: 127.0.0.1 localhost .local hosts 파일에 추가하면 문제가 해결된다. 출처 : https://youtrack.jetbrains.com/issue/IDEA-161967