本文介绍了从sbt在dev模式下运行lift webapp时,我需要在哪个文件中添加码头端口的替代项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此页: http://www.assembla.com/wiki/show/liftweb/Using_SBT 描述了如何为Lift Webapp覆盖码头端口:
This page:http://www.assembla.com/wiki/show/liftweb/Using_SBTdescribes how to override the jetty port for lift webapps:
override val jettyPort = 8081
但未声明应在其中定义此替代文件的文件.
but doesn't state the file that this override should be defined in.
推荐答案
在project/build/ProjectNameProject.scala
文件中:
import sbt._
class ProjectNameProject(info: ProjectInfo) extends DefaultWebProject(info) {
// other configuration
override val jettyPort = 8081
}
jettyPort
在SBT的DefaultProject.scala
文件中定义.
The jettyPort
is defined in the DefaultProject.scala
file of SBT.
这篇关于从sbt在dev模式下运行lift webapp时,我需要在哪个文件中添加码头端口的替代项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!