'IntelliJ'에 대한 검색결과 6개
IntelliJ와(과) 일치하는 검색결과가 없습니다.
제안:
- 모든 단어의 철자가 정확한지 확인하세요.
- 다른 검색어를 사용해 보세요.
- 더 일반적인 검색어를 사용해 보세요.
[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
Error:java: javacTask: source release 8 requires target release 1.8
1. IntelliJ에서 분명 JDK1.8 설정이 되어 있는데 에러가 발생하였다. 실행코드 int total = Arrays.asList(1,2,3,4,5,6,7,8,9,10) .parallelStream() .reduce(0, (i1,i2) -> i1 + i2 ); System.out.println(total); Preference > Java Compiler Target Bytecode version이 1.5로 되어 있는 부분이 문제였다. 1.8로 수정하면 정상적으로 수정이 된다.