Hi
Just working through the Web Development tutorial and have encountered a problem (Not sure if this is the correct forum for this) :
When declaring <%@ page import=”com.david1.test.HelloWorld” %> in the helloWorld.jsp I get the error ‘The import com.david1.test.HelloWorld conflicts with a type defined in the same file (in file: com.david1.test.HelloWorld)’.
I have create the com.david1.test package under a src dircetory as follows:
package com.david1.test;
/public class HelloWorld {
public String helloWorld(){
return “Hello World”;
}
}
This is in the same project as the jsp.
Any ideas why this might occur?
Thanks in advance.
David