1.使用 SBT 安装 Play

安装 SBT

1
> brew install sbt

新建 Play Framework 项目

参考 https://playframework.com/download
> sbt new playframework/play-java-seed.g8

运行 > sbt run

速度好慢. 下载很多依赖

2.使用 Activator 安装 Play

下载 Activator

https://playframework.com/download

配置环境变量

打开这个文件 $home/.base_profile
添加 export PATH=/path/to/activator-x.x.x/bin:$PATH
> source $home/.base_profile  //该命令生效

新建项目

1
2
3
4
5
6
> activator ui 查看模板
使用 play-java 模板 新建java项目
> activator new helloPlay play-java
> cd helloPlay
> activator run
也可以使用 > sbt run

3. 使用sbt插件生成 eclipse 工程

添加 sbteclipse 插件

https://github.com/typesafehub/sbteclipse

1
2
3
4
5
打开文件,如果不存在,新建文件,以下两个随便一个添加上就可以了
~/.sbt/0.13/plugins/plugins.sbt //全局添加
PROJECT_DIR/project/plugins.sbt //当前项目
添加以下内容
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")

生成 eclipse

command

1
2
3
4
5
> cd helloPlay
> sbt compile
> eclipse
如果报错,请检查上一步的插件配置路径是否正确
使用 eclipse 导入工程