データの更新後にリソース バンドルをリロード/更新したい。
私の ResourceBundle 実装は db に基づいています。コードは次のとおりです。
public class DatabaseResourceBundle extends ResourceBundle {
private static EntityManagerFactory factory = Persistence.createEntityManagerFactory("ADAEcommerceEjbPU");
private EntityManager _entityManager = factory.createEntityManager();
private Map<String, String> _values = new HashMap<>();
protected final static String BUNDLE_NAME = "com.infomaxgroup.adaecommerce.bundles";
private final static Logger LOGGER = Logger.getLogger(DatabaseResourceBundle.class.getName());
private Locale locale = FacesContext.getCurrentInstance().getViewRoot().getLocale();
protected Control DB_CONTROL = new DBControl();
/**
* Public constructor setting the parent bundle
*/
public DatabaseResourceBundle() {
LOGGER.log(Level.FINE, "DatabaseResourceBundle()");
setParent(ResourceBundle.getBundle(BUNDLE_NAME,
FacesContext.getCurrentInstance().getViewRoot().getLocale(), DB_CONTROL));
}
public DatabaseResourceBundle(Locale locale) {
LOGGER.log(Level.FINE, "DatabaseResourceBundle(Locale locale)");
setParent(ResourceBundle.getBundle(BUNDLE_NAME, locale, DB_CONTROL));
}
@Override
protected Object handleGetObject(String key) {
LOGGER.log(Level.FINE, "handleGetObject() Locale {0} Key: {1} ", new Object[]{locale.toString(), key});
return _values != null ? _values.get(key) : parent.getObject(key);
}
@Override
public Enumeration<String> getKeys() {
LOGGER.log(Level.FINE, "getKeys() Parent Locale {0} ", parent.getLocale());
return parent.getKeys();
}
/**
* The Control Callback.
*
* @see
* http://docs.oracle.com/javase/6/docs/api/java/util/ResourceBundle.Control.html
*/
protected class DBControl extends Control {
@Override
public ResourceBundle newBundle(String baseName, Locale locale, String format, ClassLoader loader, boolean reload)
throws IllegalAccessException, InstantiationException, IOException {
LOGGER.log(Level.INFO, "reload {0} ", reload);
return new MyResources(locale);
}
/**
* A simple ListResourceBundle
*/
protected class MyResources extends ListResourceBundle {
private Locale locale;
/**
* ResourceBundle constructor with locale
*
* @param locale
*/
public MyResources(Locale locale) {
this.locale = locale;
}
@Override
protected Object[][] getContents() {
if (locale == null) {
locale = Locale.ITALY;
}
TypedQuery<ResourceEntity> query = _entityManager.createNamedQuery("ResourceEntity.findForLocale", ResourceEntity.class);
query.setParameter("locale", locale.getLanguage());
List<ResourceEntity> resources = query.getResultList();
Object[][] all = new Object[resources.size()][2];
int i = 0;
for (Iterator<ResourceEntity> it = resources.iterator(); it.hasNext();) {
ResourceEntity resource = it.next();
all[i] = new Object[]{resource.getKey(), resource.getValue()};
_values.put(resource.getKey(), resource.getValue());
i++;
}
return all;
}
}
}
}
データを更新して DatabaseResourceBundle.clearCache() を呼び出すと、次のリクエストでメソッドが呼び出されることがわかります。
MyResources.getContents()
どのデータが返されるかをデバッグすると
Object[][] all
ここでは更新されたデータが表示されますが、JSF ページにはまだ古いデータが表示されます。JSF がキャッシュされたデータを使用しているようです。
更新されたデータを JSF ページに表示するにはどうすればよいですか?
よろしくお願いします...