从Play 1.2.1升级到1.2.3时,我遇到一些编译错误。例如:WsAsync.newRequest现在接受两个参数,而不是一个参数。
Play 1.2.3有两个play jars: Play.jar和play-1.2.3.jar。但是当我运行Play时,它似乎只使用play-1.2.3.jar。我甚至尝试将play.jar复制到应用程序的lib目录,但没有解决问题。
谁能告诉我如何使用这两个play jar来获得向后兼容性?
Neneath play classpath的输出
hh@ubuntu10:/disk2/dba/lib$ /disk2/play-1.2.3/play class
我遵循自述,通过git克隆play1.git并将play1移动到/opt目录,并将其添加到PATH中。
我遇到的第一个问题是在/opt/play1/framework/src/play中丢失了“version”文件,所以我按了其中一个作为运行play命令。
毕竟,我通过play new test制作了一个新的play应用程序并运行了play run test,显示了以下错误:
打开zip文件或JAR清单丢失:/opt/play 1/framework/play-.jar在初始化VM代理库时出错
有人能告诉我发生了什么吗?
我在试着装剧本!Windows 8.1上的框架,我添加了path并尝试运行'play‘命令,输出如下:
Error during sbt execution: Could not find configuration file
'file:////c:/Program%20Files%20(x86)/play-2.2.2/framework/sbt/play.boot.properties'.
Searched:
file:/C:/Program%20Files%20(x86)/play-2.2.2/
file:/C:/Users/Use
我是玩框架游戏的新手,我正在尝试运行这样的应用程序
$ play eclipse
Error during sbt execution: Could not find configuration file 'd:/play/framework
/sbt/sbt.boot.properties'. Searched:
file:/c:/Users/Alok/test-app/
file:/C:/Users/Alok/
file:/D:/play/framework/sbt/
我搜索了很多次,得到了一些解决方案,但它不起作用。我使用
当我运行命令play install gae时,我在控制台中得到以下输出。
~ play! 1.2.4, http://www.playframework.org
~
~ Will install gae-1.4
~ This module is compatible with: 1.1, and GAE 1.4.0
~ Do you want to install this version (y/n)? y
~ Installing module gae-1.4...
~
~ Fetching http://www.playframework.org/modules/gae-1.4.zip
我正在尝试从两个不同的控制台启动play:
1)经典的windows cmd,没有任何问题
2) Git
我得到了以下错误:
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=512M; support was removed in 8.0
Error during sbt execution: Could not find configuration file 'c:/play/play-2.2.3/framework/sbt/sbt.boot.properties'. Search
我使用的是play 2.8.x framework,并且我有以下控制器: public class HomeController extends Controller {
public Result show(Http.Request request) throws MyException {
...
return ok("some_data");
}
} 我想做一些类似于在Spring framework中处理异常的事情: // It is from the Spring web framework
@ExceptionHan
我正在尝试在我的heroku应用程序上安装一个模块。在本地运行(在开始时减去heroku run )是可行的,但是当我尝试在Heroku上运行它时,我得到一个错误。
heroku run play install securesocial-0.2.2
这是输出
...
~ Do you want to install this version (y/n)? y
~ Installing module securesocial-0.2.2...
~
~ Fetching http://www.playframework.org/modules/securesocial-0.2.2.zip
Tra
我在Ubuntu 14.04上,使用docker在Java中运行Play Framework应用程序。用于自动构建的工具是。
在docker中启动应用程序的命令是
docker run -d -v /path/to/play/project:/app:rw -P ingensi/play-framework
取自上面的链接。在此之后,当我运行docker ps时,我得到如下结果:
CONTAINER ID IMAGE COMMAND CREATED STATUS
我想在Scala中使用Play Framework对生成的SHA-1散列进行base64编码。
这在Scala中适用:
val md = java.security.MessageDigest.getInstance("SHA-1");
println(new sun.misc.BASE64Encoder().encode(md.digest("Foo".getBytes)))
但在Play Framework中,我在使用以下命令时出错:
type encode is not a member of object sun.misc.BASE64Encoder