Hi All
I am learning Java Bean Technology, using Tomcat. I want to develop a connection manager to connect to a database.
I have created two classes
and
and put them in the same package
.
I created a third class that implements interface AppConstants and initiate a DebugWriter Object, when compiling
I got the following errors:
Code:
1. Cannot find symbol: class AppConstants
2. Cannot find symbol: class DebugWriter
After searching for a solution, I found that I have to include mybeans folder in classpath so that, other classes want to use any class can find them. Despite that, the program didn't compile.
I have lost, I am trying to find a solution from two days, any advice please.
JOTNARTA