如何正确设置装载机速度路径
我希望我的速度引擎从设计的路径中寻找模板。 我这样做了:
<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
<property name="velocityProperties">
<value>
resource.loader=class
class.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
class.resource.loader.resourceLoaderPath=/mytemplates
</value>
</property>
但仍在类文件夹中寻找模板。 有什么想法吗?
i would like that my velocityengine look for templates from a designed path.
i did this :
<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
<property name="velocityProperties">
<value>
resource.loader=class
class.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
class.resource.loader.resourceLoaderPath=/mytemplates
</value>
</property>
but is still looking for templates in the classes folder.
any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如 spring documentation,您可以尝试以下操作:
或者,您可以在
velocity.properties
中声明这些属性并指定As illustrated in the spring documentation, you could try the following:
Alternately, you could declare these properties in a
velocity.properties
and specify that试试这个:
Try this:
尝试使用资源加载器,
希望这会有所帮助。
Try with Resource Loader as
Hope this helps.