기록공간

[Spring 에러] Log4j cannot be resolved to a type 본문

BackEnd/Spring

[Spring 에러] Log4j cannot be resolved to a type

입코딩 2021. 3. 6. 23:53
반응형

Log4j를 사용할 때 자주 나는 에러이다.

 

 

해결방법

해결 방법은 매우 간단하다.

pom.xml에서 log4j 부분 dependency 태그에 <scope>runtime</scope> 부분을 주석처리 하면 된다.

<!-- ... 생략 ... -->

		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.15</version>
			<exclusions>
				<exclusion>
					<groupId>javax.mail</groupId>
					<artifactId>mail</artifactId>
				</exclusion>
				<exclusion>
					<groupId>javax.jms</groupId>
					<artifactId>jms</artifactId>
				</exclusion>
				<exclusion>
					<groupId>com.sun.jdmk</groupId>
					<artifactId>jmxtools</artifactId>
				</exclusion>
				<exclusion>
					<groupId>com.sun.jmx</groupId>
					<artifactId>jmxri</artifactId>
				</exclusion>
			</exclusions>
			<!-- <scope>runtime</scope> --> <!-- 주석처리 -->
		</dependency>

<!-- ... 생략 ... -->
반응형
Comments