首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Play的模块装配 ===Thymeleaf module(NEW)

2013-10-25 
Play的模块安装 Thymeleaf module(NEW)- play - thymeleaf 1.5 ?这样配置之后,即通知play在运行play d

Play的模块安装 ===Thymeleaf module(NEW)
- play -> thymeleaf 1.5

?

这样配置之后,即通知play在运行play dependencies命令时,需要引入一个名叫thymeleaf-1.5的模块,play就会到modules目录下进行查找并安装。

?

重要的一步:

拷贝解压后的play-thymeleaf-1.5到Play的modules目录下,将其重命名为thymeleaf-1.5

为什么 要重命名?

因为在使用play dependencies的时候,因为thymeleaf有自己的denpendencies.yml描述文件,其中声明了自己的名字就是thymeleaf 1.5,具体如下:

?

self: play -> thymeleaf 1.5require:    - play    - org.thymeleaf -> thymeleaf 2.0.15

?所以,刚才在Eclipse中配置demo的dependencies.yml时,指定引入的模块名为thymeleaf 1.5正好能够与此相对应,安装的时候才能正确匹配!

?

?

?现在,可以执行play dependencies命令,安装新模块了。
Play会自动下载到网上下载一些jar包,下载完成后,接着就开始安装thymeleaf模块到项目中。

【CRUD模块是Play中自带的,只需要在dependencies.yml中声明即可,不用下载。】
Play的模块装配 ===Thymeleaf module(NEW)
?

刷新Eclipse,此时modules目录下就可以看到thymeleaf-1.5模块了!

?

?

?

?

热点排行