我尝试了一个简单的喷雾示例应用程序,但无法访问该路线,我将无法使用的示例源代码上传到 github:spray-tomcat-example:
git clone https://github.com/avidanyum/spray-tomcat-example
mvn package
cp cp target/spray-tomcat-example-0.1-SNAPSHOT.war ~/tmp/tomcat/apache-tomcat-7.0.61/webapps/spraytomcat.war
cd ~/tmp/tomcat/apache-tomcat-7.0.61/bin
./catalina.sh jpda run
http://localhost:8080/spraytomcat/
我明白了
"The requested resource could not be found."
我将路线定义如下:
class ServiceActor extends Actor with Service {
def actorRefFactory = context
def receive = runRoute(myRoute)
}
trait Service extends HttpService {
import com.example.domain.Person
val myRoute =
path("") {
get {
respondWithMediaType(`text/html`) {
complete {
<html>
<body>
<h1>Say hello to <i>spray-routing</i> on <i>tomcat</i>!</h1>
</body>
</html>
}
}
}
}
}
当然,我已经boot
上课了
在application.conf
spray.servlet {
boot-class = "com.example.SprayBoot"
request-timeout = 10s
}
和SprayBoot
它本身:
class SprayBoot extends WebBoot {
val system = ActorSystem("actorsystem")
val serviceActor = system.actorOf(Props[ServiceActor])
}
我很确定我遵循了所有要求我错过了什么吗?如何更新它以实际提供内容而不是“找不到请求的资源”。