In Struts application, we are using Spring in DAO and Service layer. We have a requirement for which we have to read the messages from Application Resources.properties in Spring DAO and service layer.
Is it ok to use org.springframework.context.support.ResourceBundle MessageSource class to read Application Resources.properties since this properties file will also be used by Struts as well.

Thank You