This is it. it's IT.

logger cannot be resolved to a type 본문

Errors

logger cannot be resolved to a type

응애개발자 애기 2021. 11. 28. 15:28
728x90
반응형
		<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>

 

pom.xml 에 있는 <scope>runtime</scope>를 주석처리하면 인식이 정상적으로 되게 된다... 

728x90
Comments