While creating one folder in src directory in one project in eclipse, it makes that folder a package. Is there any way to avoid this folder from automatically being a packag
You need to go to Project -> Properties -> Java Build Path -> Source (tab).
Remove src from "Source Folders on Build Path"
src
Then add src/main as a source folder. If you already have org under main, then your packages should start with org as desired.
src/main
org