I am using the current version of SpringSource Tool Suite with the Groovy / Grails plugin installed. I can understand that when defining and using "clean" groovy classes / objects, there are cases that make code auto-complete difficult.
But if I use Java classes in the groovy class, should the autocomplete function not work? For example, I'm trying to use "readFileToString" from the org.apache.commons.io.FileUtils class. Eclipse offers only groovy methods for this class; there is no static method in the list from the FileUtils class.
Is this a problem with my STS installation, or maybe autofill for pure Java classes is simply not supported in the groovy editor in STS?
source
share