2
私はapplicationContext.xmlにフリーメーカBeanを定義していますが、このBeanにはテンプレートディレクトリのパスが必要です。 それがために使用:誰でもしてくださいapplicationContext.xmlのスプリングパス
<bean id="freemarkerConfig" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="templateLoaderPath" value="/template/email/"/>
</bean>
ことができます。
src/main/webapp/template/
しかし、私は今の下に私のテンプレートを保存する:
src/main/resources/template/
それがどのように見えるのに使用新しいパスを正しく定義するのに役立ちますか?
classpath:prefixは役に立ちますか? – kan
はいそうですね! :) お返事をありがとうございます! – user829237