I have a servlet calling methods from a user-definded class. The java file and its related class file are in the same folder as my servlet. When I try to create new objects
MyClass NewObject = new MyClass();
I receive an error that it cannot resolve symbol. I just started to code again in Java after a couple of months so I am a little rusty.
MyClass NewObject = new MyClass();
I receive an error that it cannot resolve symbol. I just started to code again in Java after a couple of months so I am a little rusty.