Cyrille37 a écrit :
I would like to store locales messages in a database.
In my application project, some users can translate messages by them self to create new locales or change some messages.
It will be better if they can do that online via a web interface.
I think it would not be great and dangerous if they directly edit messages files, so I need to store messages in a database. With a ORM like Hibernate and a cache system, performances should be good enough.

Do you know where I've to start ?

I've found in the hivemodule.xml of tapestry-4.0.2.jar a contribution :

<contribution configuration-id="Infrastructure">
<property name="componentMessagesSource" object="service:ComponentMessagesSource"/>
   ...
  </contribution>
 <service-point id="ComponentMessagesSource">
Used to provide components (including pages) with access to their own localized messages.
   <invoke-factory>
     <construct class="impl.ComponentMessagesSourceImpl">
       <event-listener service-id="ResetEventHub"/>
<set-object property="componentPropertySource" value="infrastructure:componentPropertySource"/>
     </construct>
   </invoke-factory>
 </service-point>

Should I look that way to implement my need ??

Cyrille

Thanks
Cyrille




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to