IntelliJ,Eclipse
-
웹프로그램 배포방법(Intellij, Eclipse)IntelliJ,Eclipse 2019. 6. 5. 17:04
1. IntelliJ ------------------------- WAR 파일 생성 ------------------------- 상단 메뉴의 File-Project Struct - Artifacts로 이동합니다. 가운데 탭의 상단에 있는 +버튼을 클릭 > Web Application: Exploded > From Modules... 클릭 > 대상 모듈 선택 ***:war exploded 라고 생성확인 가운데 탭의 상단에 있는 +버튼을 클릭 > Web Application:Archive 선택 ***:war exploded 라고 클릭 Out put directory 확인 : 예) C:\Java\Intellij_MyProject\out\artifacts\TestSpringBootRest_war ------..
-
Intellij Test case, Test method 단축키IntelliJ,Eclipse 2019. 5. 1. 06:10
클래스명에 마우스 위치후 alt + enter ==> Test Case 생성 Test Case 소스 상에서 alt + insert ==> Test Method 생성 Creating Tests # You can create test classes for the supported testing frameworks using the intention action. Open the necessary class in the editor and place the cursor on a class name. Press Alt+Enter to invoke the list of available intention actions. Select Create Test. Alternatively, you can place the..
-
Intellij java: package org.apache.log4j does not existIntelliJ,Eclipse 2019. 4. 9. 02:05
Intellij java: package org.apache.log4j does not exist 오류) 메이븐 기반 프로젝트를 Tomcat으로 띄울려고 Run을 누르면 log4j 라이브러리를 찾을 수 없다고 에러가 난다 java: package org.apache.log4j does not exist 해결책) 이 오류는 IntelliJ에서 자동으로 만드는 xxx.iml 파일 내용중에 log4j 의 scope가 RUNTIME으로 되어 있어서 그렇다. scope=”RUNTIME”을 지워준다