如何指定dozer.properties位置?
我正在使用 Dozer 和 Spring 3.0.x。这是我的映射器 bean 定义:
<bean id="mapper" class="org.dozer.DozerBeanMapper" lazy-init="true">
<property name="mappingFiles">
<list>
<value>dozer-bean-mappings.xml</value>
</list>
</property>
</bean>
我想将 dozer.properties 文件放在 src/main/resources/conf/app/dozer.properties 中。
如何指定自定义 dozer.properties 位置?
I'm using Dozer with Spring 3.0.x. Here is my mapper bean definition:
<bean id="mapper" class="org.dozer.DozerBeanMapper" lazy-init="true">
<property name="mappingFiles">
<list>
<value>dozer-bean-mappings.xml</value>
</list>
</property>
</bean>
I want to put dozer.properties file in src/main/resources/conf/app/dozer.properties.
How can I specify the custom dozer.properties location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的 xml 文件位于类路径
http://dozer.sourceforge.net/documentation/springintegration 中。 html
Make sure you xml file is on the classpath
http://dozer.sourceforge.net/documentation/springintegration.html
正如文档中提到的:
因此,只需使用
-Ddozer.configuration=/conf/app/dozer.properties
启动您的应用程序即可As mentioned in the documentation:
So just launch your app with
-Ddozer.configuration=/conf/app/dozer.properties