views:

320

answers:

2

Hi all,

i tried to use in my grails project (1.1.1, on Mac OS X) some image manipulation plugins or java libs: imageTools plugin, imageJ, awt libs etc. Everytime i open/take image from path to start the process, org.codehaus.groovy.grails.cli.support.GrailsStarter jar opens in finder and eats a lot of ram.

Is it correct behaviour?

update - sample codes:

def openFilePath = "/path/to/the/file/testfile.jpg" 
def imageTool = new ImageTool() 
imageTool.load(openFilePath)

ImageTool Plugin, but it happens also with imageJ and other java image libs. If i use NetBeans, the ....cli.support.GrailsStarter process has a NetBeans parent. If i start with terminal, bash is a parent of process. It's everytime it gets a file to open, like here:

imageTool.load(openFilePath)

With imageJ:

def o = new Opener() 
def imp = o.openImage(openFilePath)
A: 

That doesn't sound correct - can you post some of the code you're using to start the process?

leebutts
Question updated.
mono
Sounds like an installation bug of some kind?? Sorry, I don't use a Mac so can't be of much more help.
leebutts
A: 

I am having the exact same problem.

Ryan