I'm working now together with others in a grails project. I have to write some Java-classes. But I need access to an searchable object created with groovy. It seems, that this object has to be placed in the default-package. My question is: Exists a way to access this object in the default-package from a Java-class in a named package?
|
You can’t use classes in the default package from a named package. Prior to J2SE 1.4 you could import classes from the default package using a syntax like this:
That's no longer allowed. So to access a default package class from within a packaged class requires moving the default package class into a package of its own. If you have access to the source generated by groovy, some post-processing is needed to move the file into a dedicated package and add this "package" directive at its beginning. |
|||||||||||
|
|
In fact, you can. Using reflections API you can access any class so far. At least I was able to :)
|
|||||||
|
|
You can use packages in the It may mean a minor reorganization of code under Having everything in the default package becomes a hindrance to integration, as you're finding. Controllers seem to be the one Grails artifact (or artefact) that resists being put in a Java package. Probably I just haven't figured out the |
|||
|
|