Я создал следующий класс Java.
public class TestClass {
public TestClass () {
}
public String getName() {
return "Rishi";
}
}
И файл JSP выглядит следующим образом:
<jsp:useBean id="test" class="TestClass" scope="session" />
<jsp:getProperty name="test" property="name" />
Что не так в коде выше:
An error occurred at line: 3 in the jsp file: /testbeans.jsp
TestClass cannot be resolved to a type
1:
2:
3:
4:
5:
6: