개발자의 공부방/에디터 & 유틸리티
-
1. 인텔리제이 상단의 view → Tool Window → Maven Project 혹은 사진과 같이 오른쪽에 Maven을 클릭! 2. 프로젝트명 ▽ 아래 화살표 클릭 하위 폴더들이 나옵니다. *[위 사진의 springProjectPractice 가 본인의 프로젝트명입니다.] 3. Lifecycle 폴더의 clean 을 우클릭, Run '본인프로젝트명...' 을 클릭 혹은 Run Maven Build 클릭 (아마 전체 클린 같음) 이렇게 하시면 이클립스 혹은 STS 에서의 clean 후 메이븐 재빌드 하는 것과 같은 거라고 합니다.
[IntelliJ] 인텔리제이 Maven Clean Install 하는 방법 feat. 메이븐 재빌드1. 인텔리제이 상단의 view → Tool Window → Maven Project 혹은 사진과 같이 오른쪽에 Maven을 클릭! 2. 프로젝트명 ▽ 아래 화살표 클릭 하위 폴더들이 나옵니다. *[위 사진의 springProjectPractice 가 본인의 프로젝트명입니다.] 3. Lifecycle 폴더의 clean 을 우클릭, Run '본인프로젝트명...' 을 클릭 혹은 Run Maven Build 클릭 (아마 전체 클린 같음) 이렇게 하시면 이클립스 혹은 STS 에서의 clean 후 메이븐 재빌드 하는 것과 같은 거라고 합니다.
2019.07.31 -
1. 에러 코드 Unable to resolve table 'tbl_board' Inspection info: This inspection performs unresolved SQL references check. 2. 증상 0]]> : xml 쿼리에서 테이블명을 계속 확인할 수 없다는 듯이 빨간색으로 표기가 된다. 하지만 mapperTest 를 해보면 쿼리가 정상적으로 작동되는 것을 확인 가능하다. 3. 해결
[IntelliJ] 인텔리제이 Unable to resolve table 'tbl_board'Inspection info: This inspection performs unresolved SQL references check. 에러 해결1. 에러 코드 Unable to resolve table 'tbl_board' Inspection info: This inspection performs unresolved SQL references check. 2. 증상 0]]> : xml 쿼리에서 테이블명을 계속 확인할 수 없다는 듯이 빨간색으로 표기가 된다. 하지만 mapperTest 를 해보면 쿼리가 정상적으로 작동되는 것을 확인 가능하다. 3. 해결
2019.07.30 -
https://lhb0517.tistory.com/entry/SpringIntelliJ-SpringBoot-HotSwap-with-IntelliJ [Spring][IntelliJ] SpringBoot HotSwap with IntelliJ [2019-02-19 Updated] 참고 : https://stackoverflow.com/questions/35895730/spring-boot-devtools-static-content-reloading-does-not-work-in-intellij https://docs.spring.io/spring-boot/docs/current/reference/html/howto-hotsw.. lhb0517.tistory.com org.springframework spri..
IntelliJ SpringBoot 새로고침https://lhb0517.tistory.com/entry/SpringIntelliJ-SpringBoot-HotSwap-with-IntelliJ [Spring][IntelliJ] SpringBoot HotSwap with IntelliJ [2019-02-19 Updated] 참고 : https://stackoverflow.com/questions/35895730/spring-boot-devtools-static-content-reloading-does-not-work-in-intellij https://docs.spring.io/spring-boot/docs/current/reference/html/howto-hotsw.. lhb0517.tistory.com org.springframework spri..
2019.07.01 -
sout 를 입력 후 Ctrl + Space 를 하면 된다! ➡ System.out.println(); so 를 입력 후 tab 을 누르면 printf 가 자동완성 된다. ➡ System.out.printf(""); == 추가 == sout말고 조금 더 심화된 단축키가 있다. soutv 이다. 하나의 변수를 바로 출력해주는 기능이다. 만약에 Member member = new Member(); 이런 코드가 있을 때, soutv 를 입력하면? ➡ System.out.println("member = " + member); 이런 식으로 보여준다. 출력문 쓰고 그 안에 문자열 + 변수값 까지 쓸 일을 하지 않아도 되는 정말 최고의 기능이다.
[IntelliJ] 인텔리제이 System.Out.Print 자동완성 사용하는 방법 sysoutsout 를 입력 후 Ctrl + Space 를 하면 된다! ➡ System.out.println(); so 를 입력 후 tab 을 누르면 printf 가 자동완성 된다. ➡ System.out.printf(""); == 추가 == sout말고 조금 더 심화된 단축키가 있다. soutv 이다. 하나의 변수를 바로 출력해주는 기능이다. 만약에 Member member = new Member(); 이런 코드가 있을 때, soutv 를 입력하면? ➡ System.out.println("member = " + member); 이런 식으로 보여준다. 출력문 쓰고 그 안에 문자열 + 변수값 까지 쓸 일을 하지 않아도 되는 정말 최고의 기능이다.
2019.07.01 -
방법 1) https://blog.hanumoka.net/2018/07/23/STS-20180723-STS-jre-unbound-error/ STS(Spring Tool Suite) - 프로젝트에 빨간 느낌표 해결하기 어제 Windows에서 java 업데이트를 했다. 그리고 사용중인 STS에서 프로젝트에 빨간 느낌표(!)가 발생했다. 거기다 어제까지 잘되던 프로젝트 빌드가 안된다!!! 인터넷을 찾아보니 import 시킨 jar 파일의 경로가 잘못되거나, 유효하지 않은 파일이나 디렉토리를 참조한 경우라고 한다. 프로젝트의 properties에 Java Build Path blog.hanumoka.net
이클립스 자바 프로젝트 빨간색 느낌표 feat. 업데이트방법 1) https://blog.hanumoka.net/2018/07/23/STS-20180723-STS-jre-unbound-error/ STS(Spring Tool Suite) - 프로젝트에 빨간 느낌표 해결하기 어제 Windows에서 java 업데이트를 했다. 그리고 사용중인 STS에서 프로젝트에 빨간 느낌표(!)가 발생했다. 거기다 어제까지 잘되던 프로젝트 빌드가 안된다!!! 인터넷을 찾아보니 import 시킨 jar 파일의 경로가 잘못되거나, 유효하지 않은 파일이나 디렉토리를 참조한 경우라고 한다. 프로젝트의 properties에 Java Build Path blog.hanumoka.net
2019.05.10