0
votes

In sts I'm doing some sample freemarker maven project when I'm configuring I'm getting following error.

The type freemarker.core.Configurable cannot be resolved. It is indirectly referenced from required .class files

Below is my code snippet:

final Configuration configuration = new Configuration();
        configuration.setClassForTemplateLoading(App.class, "/");
1
Check that you have all of the library's dependencies.killjoy
Are you sure it is related to Apache Spark?jgp
@killjoy Yes I have all library in my pathChandangowda C B
@jgp i don't think soChandangowda C B

1 Answers

0
votes

The issue has been resolved the dependency jar file in .m2 folder was corrupted I manually downloaded a jar file from the maven repository. Now it is working fine