尝试运行新的play 2.0控制台时(在cmd中输入'play') 在项目文件夹的窗口上(按框架Web教程的指示)。
我收到:
C:\temp\play-2.0\play-2.0\todolist>play
[info] Loading project definition from C:\temp\play-2.0\play-2.0\todolist\projec
t
[error] Server access Error: Connection timed out: connect url=http://repo.types
afe.com/typesafe/ivy-releases/org.hibernate/hibernate-validator/4.2.0.Final/ivys
/ivy.xml
[error] Server access Error: Connection timed out: connect url=http://repo.types
afe.com/typesafe/ivy-releases/javax.validation/validation-api/1.0.0.GA/ivys/ivy.
xml
[error] Server access Error: Connection timed out: connect url=http://repo.types
afe.com/typesafe/ivy-releases/org.springframework/spring-context/3.0.7.RELEASE/i
vys/ivy.xml
[error] Server access Error: Connection timed out: connect url=http://repo.types
afe.com/typesafe/ivy-releases/org.springframework/spring-core/3.0.7.RELEASE/ivys
/ivy.xml
[error] Server access Error: Connection timed out: connect url=http://repo.types
afe.com/typesafe/ivy-releases/org.springframework/spring-beans/3.0.7.RELEASE/ivy
s/ivy.xml
列表继续......
出了什么问题,为什么我想要做的就是使用console / run app来尝试访问远程位置?
答案 0 :(得分:11)
我遇到了同样的问题,我通过修改build.bat
中的play/framework
文件的最后一行解决了这个问题:
java -Dhttp.proxyUser = MyProxyAccount -Dhttp.proxyPassword = MyProxyPwd -Dhttp.proxyHost = MyProxyIp -Dhttp.proxyPort = MyProxyPort -Xms512M -Xmx1024M -Xss1M -XX:+ CMSClassUnloadingEnabled -XX:MaxPermSize = 256M%DEBUG_PARAM%-Dfile.encoding = UTF8 -Dplay.version ="%PLAY_VERSION %" -Dsbt.ivy.home ="%〜DP0 .. \库" -Dplay.home ="%〜DP0&#34。 -Dsbt.boot.properties ="文件:///%p%sbt/sbt.boot.properties" -jar"%~dp0sbt \ sbt-launch.jar" %*
希望得到这个帮助。
答案 1 :(得分:2)
键入命令play
时是否已连接到互联网?
Ivy是一个依赖管理器,它为用于构建项目的依赖项创建了一个本地存储库。
答案 2 :(得分:2)
我是通过代理连接的,它没有任何用户名或密码。我将play / framework文件夹中build.bat文件的最后一行编辑为:
java -Dhttp.proxyHost = EnterHostNameHere -Dhttp.proxyPort = EnterPortNumberHere -Xms512M -Xmx1024M -Xss1M -XX:+ CMSClassUnloadingEnabled -XX:MaxPermSize = 256M%DEBUG_PARAM%-Dfile.encoding = UTF8 -Dplay.version =“%PLAY_VERSION %“ - Dsbt.ivy.home =”%~dp0 .. \ repository“-Dplay.home =”%~dp0。“ -Dsbt.boot.properties =“file:///%p%sbt/sbt.boot.properties”-jar“%~dp0sbt \ sbt-launch.jar”%*
希望这有效..! :)