error is in the
<%@ page import = "/WEB-INF/classes/message.class"%>
instead this use this
<%@ page import="message"%>
problem will be solved. In import tag you have to
specify the class name with the package not with path.
and in tomcat by default it looks for classes into
WEB-INF/class directoy