database 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)) ...