개발환경, 도구/Intellij 8

[intellij - spring boot - run] com.fasterxml.aalto.WFCException: Illegal processing instruction target: 'xml' (case insensitive) is reserved by the xml specification

https://stackoverflow.com/a/75086568/21912106 [Android Studio]: Illegal processing instruction target ("xml"); xml (case insensitive) is reserved by the specs :app:mergeDebugResources 1error Illegal processing instruction target ("xml"); xml (case insensitive) is reserved by the specs. at [row,col {unknown-source}]: [5,9] what does it says? ... stackoverflow.com xml 파일 읽기 에러 원인 .lml 파일에서 첫 줄에 공백..

intellij에서 console에 메이븐 명령어 사용 ( mvn -U clean install ), maven 오류

cmd에서 mvn -version cmd 에서 mvn -U clean install 인텔리제이에서는 안되네.. 인텔리제이 환경 변수 설정하는 부분 같은데, 이거 해도 안되네.. 나중에 다시.. 테스트 돌렸을 때 다른 프로젝트 resource를 못 가져오는 문제였어서 rebuild project를 해서 해결해보기로 함. ----------------------------- 2023-12-05 된다!. 안 됐을 때는 명령창을 잘못 잡았던 건가? 무튼 된다. 1. terminal 중 Command Prompt 선택 2. 프로젝트가 있는 경로 이동해서 maven 실행 : mvn clean install -pl {프로젝트 이름} -am -pl : 프로젝트 하나만 빌드됨? -am : 의존성 걸려있는 프로젝트 같이 ..

인텔리제이 에러 해결 - Package 'java.lang' is declared in module 'java.base', which is not in the module graph

Package 'java.lang' is declared in module 'java.base', which is not in the module graph IntelliJ 에서 String 이나 기본적인 있는 클래스 파일 참조가 안되고 위와 같은 에러가 발생했을 때 intellij 조치법 1. IntelliJ의 File -> Repair IDE 선택 2. 오른쪽 아래 진행과정에서 Rescan Project Indexes 3. 오른쪽 아래 진행과정에서 Reopen Project 로 intellij 재시작

intellij 셋팅

gradle보다 intellij로 하는게 속도가 더 빠름(미래에는 gradle이 더 빨라질 수도? ) gradle - Build and run using : Intellij IDEA gradle - Run and tests using : Intellij IDEA 콘솔 한글 깨짐, 테스트 코드 @DisplayName 한글 깨짐 1. File > Setting > File Encodings UTF-8로 수정 2. C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2020.3.3\bin idea.exe.vmoptions, idea64.exe.vmoptions 맨 아래 줄에 추가 -Dfile.encoding=UTF-8 3. help > Edit Custom..

intellij_단축키, 기능 정리

단축키 [이동] ctrl u : go to super method - 구현한 메소드에서 실행시 inteface의 추상 메소드로 이동 ctrl alt b : go to implementations - inteface에 커서 두고 단축키 쓰면 구현체로 이동 ctrl + alt + left, ctrl + alt + right - back, forward [찾기 바꾸기] ctrl + r - 단어 바꾸기 ctrl + f - 단어로 검색 ctrl + shift + r - ctrl + shift + f - 프로젝트내 단어전체검색 ^(?!import).*검색할단어.*$ - 파일 찾기 할 때 사용하는 정규식 ^(?!.*rest).*mapping.*/member.*$ - rest를 포함하지 않고 mapiing과 /memb..