Unable to compile class for JSP:Tomcat 9
问题 I'm using the latest TomCat version and I've recently installed Eclipse Java EE version so it's also the latest version. Btw I do have the latest version of JAVA SE (JDK). This is my class: package jsp.demo; public class ClassForJSP { public static String lowerCase(String data) { return data.toLowerCase(); } } So this is my really simple jsp code: <%@page import="jsp.demo.ClassForJSP"%> <html> <body> Let's make THIS STATEMENT lower case: <%= ClassForJSP.lowerCase("THIS STATEMENT") %> </body>