在开发过程中,有些需要引用到重复的页面,或者动态的数据
修改数据库是可以实现,但是太麻烦了。
freemarker自定义标签在开发中用途很广,就说个入门实例吧
基于springmvc。
首先需要导入对应的jar包,maven地址
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.23</version>
</dependency>
强烈建议2.3.20或其以上版本,注意还需要引入spring-context-support
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>4.1.7.RELEASE</version>
</dependency>