Hey I am trying to make a JSP site for the first time, and I have the trouble as you can see in the topic heading.
But I can't see me mistake, my index.jsp looks like that, and yes I hav checked the package path
But I can't see me mistake, my index.jsp looks like that, and yes I hav checked the package path
<%@ page import language="java" import="org.core.view.*" %> <jsp:useBean id="indexview" class="org.core.view.IndexView" scope="session" /> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>test</title> </head> <body> <header> <!-- <h1><%= indexview.getTitle() %></h1>--> <h3>Open source, development, Linux, OS X & BSD</h3> </header> <div> Hello! The time is now <%= new java.util.Date() %> </div> <footer> © 2010 - 2013 </footer> </body> </html>