I created an Application based on JavaBeans but with an error
Started JavaBeans today. Ended up with an error at the end of the day.. May be I m still missing something The program uses a simple java beans under a package. I used a jsp page to pass value to the bean and it to display its content. Here goes the code: //SimpleBean.java file name Class file for bean package mybeans; class SimpleBean { private String message; public void setMessage(String input) { ...