This week's giveaways are in the MongoDB and Jobs Discussion forums. We're giving away four copies of Mongo DB Applied Patterns and 4 resume reviews from Five Year Itch and have the authors/reps on-line! See this thread and this one for details.
Hi, When I tried for compiling servlet,that has a POJO(model) creation in its code,I got "package does not exists" error for the POJO even though I gave the import statement.Also I have specified the classpath for the POJO.How can I resolve this problem?
This error can only mean one (or more) of these problems:
1. You did not import the package correctly. 2. The package is not on the classpath correctly while compiling. 3. The directory structure does not match the full package name. 4. The package statement in the POJO class is not correct.