aspose file tools
The moose likes Other Languages and the fly likes How to have multiple public classes in one file for spring? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Languages » Other Languages
Reply Bookmark "How to have multiple public classes in one file for spring?" Watch "How to have multiple public classes in one file for spring?" New topic
Author

How to have multiple public classes in one file for spring?

Siegfried Heintze
Ranch Hand

Joined: Aug 11, 2000
Posts: 359
I'm trying to instantiate some classes using spring with java. This is working.

I'm trying to apply this to some automated code generation and I would like to have all my code in a single file.

Unfortunately, java only lets me have one public class in each source code file. When spring tries to instantiate classes that are not public, it cannot.

Is there a way around this java constraint? Maybe some scripting language like groovy?

Thanks,
Siegfried
Siegfried Heintze
Ranch Hand

Joined: Aug 11, 2000
Posts: 359
Yup, it works with groovy. Apparently groovy ignores the keyword public in front of classes and makes all classes public.

 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to have multiple public classes in one file for spring?
 
Similar Threads
How to configure the Cofiguration file in spring if we want to decide at run time which child object
Inversion of Control:question
Including Utility Function & Constants in Servlets
Spring annotation with inheritance
Rookie question on request variable