Play Framework 安装和配置
安装环境要求:
jdk 1.7+(1.8不支持play 1.3.1之前版本);
一定要配置正确jdk的环境变量(PATH;JAVA_HOME;CLASSPATH),如果配置不正确,play运行会出错
方法一:
下载Play源码包
https://playframework.com/download
解压缩Play包,放在任意位置,在环境变量中配置Play包目录
$ export PATH=/Library/play-1.4.5:$PATH
方法二:
通过Homebrew安装,先安装好Homebrew
$ brew install play
方法三:
通过git源码安装
$ git clone git://github.com/playframework/play.git
$ cd play/framework
$ ant
验证是否安装成功
$ play
查询命令详细使用
$ play help command
安装完成新建一个项目测试
$ play new myApp
$ play run myApp
浏览器访问 http://localhost:9000 可以看到默认程序页面
新建项目文件目录如下
默认9000端口,更改端口,需要修改conf\application.conf,http.port=9000
配置IDE
Play 提供一个生成 IDE 配置的命令。
要将 Play 应用转化为 Ecipse 工程,可以使用 eclipsify 命令:
$ play eclipsify myApp
eclipse/ 目录下会生成启动文件 .launch 右键选择Run as即可以启动程序
要将 Play 应用转化为 IDEA 工程,可以使用 idealize 命令:
$ # play idealize myApp
需要手动配置IDEA启动项
1.In IntelliJ IDEA, on the Run menu, select Edit Configurations.
2.Right-click on Application under Defaults and select Add New Configuration.
3.Under Main class, enter play.server.Server.
4.Under VM parameters, enter -Dapplication.path=".".
5.Under Working directory, enter the application path.
6.Under Before launch, remove Make if exists.
推荐一个不错的中文Play文档