-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Hi, I get some exceptions when the project boots up. Mine is a simple springboot app to try this library
-
org.reflections.ReflectionsException: could not get type for name org.thymeleaf.templateresolver.TemplateResolver
at org.reflections.ReflectionUtils.forName(ReflectionUtils.java:390) ~[reflections-0.9.11.jar:na] -
org.reflections.ReflectionsException: could not get type for name org.springframework.web.context.ServletContextAware
at org.reflections.ReflectionUtils.forName(ReflectionUtils.java:390) ~[reflections-0.9.11.jar:na] -
org.reflections.ReflectionsException: could not get type for name org.thymeleaf.resourceresolver.IResourceResolver
at org.reflections.ReflectionUtils.forName(ReflectionUtils.java:390) ~[reflections-0.9.11.jar:na]
This is the dependency I use
<dependency>
<groupId>fr.sii.ogham</groupId>
<artifactId>ogham-spring-boot-starter-email</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
Any direction to resolve these exceptions is appreciated