1. Database backed MessageSource - anyone? forum.springsource.orgDatabase backed MessageSource - anyone? Hi, For the app I am working on, I am thinking of may be developing a database backed message src. Has anyone developed such a beast? ... |
2. database write inside MessageSource results InvalidDataAccessApiUsageException forum.springsource.orgdatabase write inside MessageSource results InvalidDataAccessApiUsageException Hello all, I've got method in my DatabaseMessageSource: Code: protected String resolveCodeWithoutArguments(String code, Locale locale) { Translation t = messagesDao.getMessageTranslation(code, locale); if(t!=null) return t.getTranslation(); if(!locale.getLanguage().equals(Constants.LANG_DEFAULT)) ... |