I want to move this piece of Java code to a JSP file.
IReader reader = new SomeReader<SomeClass>() {
    @Override
    protected SomeClass createNode() {
        return new SomeClass();
    }
};
I get this error:
Unable to compile class for JSP:
Syntax error, insert "}" to complete ClassBody
I don't see this syntax (Java Anonymous Class) being supported in JSP. What is an alternative to this?
Using Java 8 - Zulu JDK (old project).
