when i try to run my Application it gives me following error:
Compilation error
The file /app/models/setting.java could not be compiled. Error raised is : The type Setting is already defined
- I do have only one file "Setting.java", which is in the models directory
- the file is named "Setting.java" and not "setting.java" as the error message suggests
- i do not include any play modules
I am running play on windows. Is it possible that play has problems with windows' case insensitive? So it would first try to compile models/Setting.java and after that models/setting.java ??
What else could be the reason for this odd behavior?
/EDIT: Since i wrote this question here i did not edit anything at my play application and i did not restart it. Now i just refreshed the page and the same error comes again - but with another model!!
The file /app/models/staticsite.java could not be compiled. Error raised is : The type Staticsite is already defined
/EDIT2: After a few page refreshes in the browser this error appeared:
The file /app/models/setting.java could not be compiled. Error raised is : The public type Setting must be defined in its own file
The file IS named "Setting.java" and the class IS named Setting
