
net.officefloor.tutorial.scalahttpserver.ScalaService.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ScalaHttpServer Show documentation
Show all versions of ScalaHttpServer Show documentation
Tutorial of implementing logic with Scala
The newest version!
package net.officefloor.tutorial.scalahttpserver
import net.officefloor.web.ObjectResponse
object ScalaService {
def service(request: ScalaRequest, response: ObjectResponse[ScalaResponse]) {
response.send(new ScalaResponse(s"Hello ${request.message}"))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy