Mac下搭建Play Framework开发环境
1.使用 SBT 安装 Play
安装 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 //该命令生效
新建项目
|
|
3. 使用sbt插件生成 eclipse 工程
添加 sbteclipse 插件
https://github.com/typesafehub/sbteclipse12345打开文件,如果不存在,新建文件,以下两个随便一个添加上就可以了 ~/.sbt/0.13/plugins/plugins.sbt //全局添加 PROJECT_DIR/project/plugins.sbt //当前项目添加以下内容 addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
生成 eclipse
12345> cd helloPlay> sbt compile> eclipse如果报错,请检查上一步的插件配置路径是否正确使用 eclipse 导入工程