码迷,mamicode.com
首页 > 编程语言 > 详细

【Eclipse Maven项目 Spring4 MVC 配置 Freemarker视图添加 templateLoaderPath 时报错】

时间:2020-07-10 17:23:31      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:path   https   toolbar   http   system   cto   搭建   添加   artifact   

在Eclipse Maven项目 Spring4 MVC 配置 Freemarker视图时报错

在spring-mvc.xml中添加如下块

<!-- freemarker config -->
<bean id="freemarkerConfig"
    class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
    <property name="templateLoaderPath" value="/WEB-INF/freemarker/" />
</bean>

之后,Eclipse显示:

Multiple annotations found at this line:
    - No setter found for property ‘templateLoaderPath‘ in class
     ‘org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer‘

 

在网上找到了一些热心网友的提示:

http://viralpatel.net/blogs/spring-mvc-freemarker-ftl-example/

Adam McCormick                                              25 June, 2013, 9:41
You need to include spring-context-support.jar. FreeMarkerConfigurationFactory was moved. See:
https://jira.springsource.org/browse/SPR-10233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel

说是需要一个 spring-context-support.jar 的包

由于项目是Maven的,所以,在项目的pom.xml中添加 dependency

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>4.0.4.RELEASE</version>
</dependency>

 

 

【额外发现 : 】

                   两种Freemarker模板路径设置方法

                   基于注解的SpringMVC+freemarker环境搭建

【转】it610.com/article/3156940.htm

【Eclipse Maven项目 Spring4 MVC 配置 Freemarker视图添加 templateLoaderPath 时报错】

标签:path   https   toolbar   http   system   cto   搭建   添加   artifact   

原文地址:https://www.cnblogs.com/xiaoluohao/p/13279919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!