scala.tools.reflect.ToolBoxError: reflective compilation has failed: cannot initialize the compiler due to java.lang.VerifyError
问题 I want to pass a scala file containing a case class so my application compiles this case class during run time and start using it. The main reason why I am doing this is because I want to avoid rebuilding my code every time the case class changes. So would be better to pass it as a parameter (in case you are wondered, the operations with this case class are generic so it is not required any rework in the transformations) I was using these post1, post2 and post3 as references. So far my