[Error_log] Caused by: java.lang.IllegalArgumentException: warning can't determine implemented interfaces of missing type frameone.core.utility.logging.ServiceLogger [Xlint:cantFindType]
본문 바로가기
IT 이야기/JBoss EAP

[Error_log] Caused by: java.lang.IllegalArgumentException: warning can't determine implemented interfaces of missing type frameone.core.utility.logging.ServiceLogger [Xlint:cantFindType]

by 찬찬이 아빠 2020. 4. 13.
반응형

<에러 내용>

Caused by: java.lang.IllegalArgumentException: warning can't determine implemented interfaces of missing type frameone.core.utility.logging.ServiceLogger [Xlint:cantFindType]

 

<원인>

실제로는 org.jboss.as.connector.subsystems.datasources.WildFlyDataSource 를 AspectJ 로 load-time weaving 할 때 위와 같은 오류가 발생하는 것으로 확인됨.

 

<해결 방안>

jboss-deployment-structure.xml 옵션 추가   

<dependencies>
	<module name="org.jboss.as.connector" slot="main" />
	... 생략 ...
</dependencies>

 

반응형

댓글