작성
·
2.8K
12
private boolean isJwtValid(String jwt) {
boolean returnValue = true;
String subject = null;
try {
subject = Jwts.parser().setSigningKey(env.getProperty("token.secret"))
.parseClaimsJws(jwt).getBody()
.getSubject();
}catch (Exception ex){
returnValue = false;
}
if(subject==null || subject.isEmpty()){
returnValue = false;
}
return returnValue;
}
java.lang.NoClassDefFoundError: Could not initialize class javax.xml.bind.DatatypeConverterImpl
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
</dependency>
해당 종속성을 추가해주게 되면 해결됩니다. 혹시 저같은 오류가 발생하신 분들에게 도움이 되었으면 좋겠습니다~!
답변 6
2
자바11부터 해당 모듈이 아예 사라졌다고 합니다.
https://luvstudy.tistory.com/61
스프링 부트 공식에서는 다른 대체 모듈을 권장하고있습니다.
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-with-Java-9-and-above
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
1
1
0
0
0