> How can I add new properties
This question is pretty vague, most likely you will use a
MappedConfiguration<K,V> which allows you to contribute to a service which
takes a Map<K,V> in it's constructor.

> Should I simply use System.setProperties
Most likely not

> Also one other question what is the order of the model load?
Quick answer: In the order that they are needed. Tapestry IOC is lazy, none
of your services are instantiated initially. Instead, tapestry creates a
proxy which will only instantiate your service implementation the first time
a method is invoked on the proxy.

You can force a service to load using eager loading
(http://tapestry.apache.org/defining-tapestry-ioc-services.html#DefiningTapestryIOCServices-EagerLoadingServices)

Tapestry includes a page in your application where you can check the status
of your services (http://tapestry.apache.org/service-status.html)



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Adding-new-properties-from-AppModule-tp5718137p5718151.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to