simplicityitself / grails-gwt

New Grails GWT Plugin
Other
23 stars 18 forks source link

Best practice for shared folder? #40

Closed confile closed 10 years ago

confile commented 10 years ago

If you use a standalone GWT app with the build in server you can use some kind of client shared folder that can be accessed by GWT client and server.

How do you handle it for Grails server and GWT client? Do you see a way to have a shared folder in some way?

daviddawson commented 10 years ago

src/java is mapped to be that shared folder. Anything in it is accessible to both server and gwt runtimes.

David Dawson CEO, Principal Consultant Simplicity Itself Limited Tel +44 7866 011 256 Skype: davidadawson david.dawson@simplicityitself.com http://www.simplicityitself.com On 31 Dec 2013 18:07, "Michael G." notifications@github.com wrote:

If you use a standalone GWT app with the build in server you can use some kind of client shared folder that can be accessed by GWT client and server.

How do you handle it for Grails server and GWT client? Do you see a way to have a shared folder in some way?

— Reply to this email directly or view it on GitHubhttps://github.com/simplicityitself/grails-gwt/issues/40 .

confile commented 10 years ago

okay great thank you!