i use intellij idea (ultimate ed., v12.1.3) on project. use jsf display our pages , messages_en.properties
(or *_different_language) handle i18n/l10n.
.properties files handled our custom implementation of org.springframework.context.messagesource
interface.
within jsf page, i'd idea autocomplete/link our .properties files, eg. code this:
<!--@elvariable id="msg" type="org.springframework.context.messagesource"--> <ib:output_text value="#{msg.base_client_name}"/>
the {msg.base_client_name}
should "clickable" (and not marked warning "cannot resolve property or method base_client_name). there way how configure idea this? know worked on different project, don't have access project configuration anymore.
Comments
Post a Comment