은 내가 JSF 자원 번들 속성 텍스트 파일과 같은 작업을 수행 할 수 있습니다 :변수 치환 JSF 자원 번들 특성 파일
receptionContact=Reception
reservationContact=Reservation
receptionEmail={receptionContact}
reservationEmail={reservationContact}
은 내가 JSF 자원 번들 속성 텍스트 파일과 같은 작업을 수행 할 수 있습니다 :변수 치환 JSF 자원 번들 특성 파일
receptionContact=Reception
reservationContact=Reservation
receptionEmail={receptionContact}
reservationEmail={reservationContact}
할 수 있습니다 parameterize 리소스 번들하지만 키에 의해 값없이 반사 재사용. 이것 좀 봐주세요 : https://code.google.com/p/reflectiveresourcebundle/
그걸로 당신은 자신을 반복하지 않아도됩니다!
company.service.phone=555-1212
[email protected]
my.error.message=Problem accessing account!\
Please call customer service at 555-1212 \
or email us at [email protected]
와 :없이
company.service.phone=555-1212
[email protected]
my.error.message=Problem accessing account!\
Please call customer service at ${company.service.phone} \
or email us at ${company.service.email}
Here은 형식에 대한 또 다른 흥미로운 튜토리얼입니다.
JSF에서 이것을 사용해 보셨습니까? –
예. 나는 jsf에서 커스텀 리소스 번들을 사용하는 방법을 배우기 위해 이것을 사용했다 : http://www.andygibson.net/blog/article/resource-bundles-in-jsf-2-0-applications/ – Robin
안녕하세요, 저는 당신이 잘못 내 질문을했을 수도 생각, 나는 자원 번들 자체에서 텍스트를 재사용하려고합니다. –
답변을 찾았습니까? –