我正在使用 Spring Web Flow 2.0.7,并且刚刚开始设置我的单元测试。我有我的流目录,在我的类路径中包含流 xml 文件和我的 messages.properties 文件。
它加载正常,但它似乎没有自动为流选择 messages.properties 文件,因此我的验证单元测试失败,因为它无法解析给定代码的消息。
这是异常的相关部分:
org.springframework.context.NoSuchMessageException: No message found under code 'error_alnum_char_count_not_atleast' for locale 'en_US'.
这似乎是一个相当常见的场景,使用在 messages.properties 中解析的代码来生成错误消息。那么...加载 messages.properties 文件的推荐方法是什么?