@Import

2011-04-02 Thread coriolisguy
Hi All, I want to import multiple javascript files using the @Import annotation. This works @Import("context:ext-3.2.1/adapter/ext/ext-base.js") public class Layout { ... This does not work @Import("context:ext-3.2.1/adapter/ext/ext-base.js") @Import("context:ext-3.2.1/ext-all-debug.js") public

Re: @Import

2011-04-02 Thread Angelo C.
how about this? @Import(library = {"context:ext-3.2.1/adapter/ext/ext-base.js","context:ext-3.2.1/ext-all-debug.js"}) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Import-tp4277615p4277644.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Java based spring configuration

2011-04-02 Thread Adam Zimowski
> I need spring [...] for things like jpa support and transactions and other > things ... I guess you're not an EJB fan :-) You don't need spring. In fact, our Ecom app runs on pure Tapestry+TapIOC (plus Apache commons lang) with EJB3 in the middle tier doing all the heavy lifting you're talking

Re: @Import

2011-04-02 Thread Howard Lewis Ship
Note that the syntax of annotations is defined by the Java language, not Tapestry, as is the limitation (?) that a given method (or other member) have only one annotation of a given type. On Sat, Apr 2, 2011 at 5:39 AM, Angelo C. wrote: > how about this? > > @Import(library = > {"context:ext-3.2.