Play Framework tips

I'm the author of Data Engineering Design Patterns (O'Reilly), a Databricks MVP, and a freelance data engineer specializing in Apache Spark and Databricks. I help teams move from working pipelines to resilient architectures.
I'm currently accepting new projects for Jun 2026. Whether you need a 2-day architectural audit, a hands-on lead for a complex data engineering problem, or a workshop let's discuss your project here.

How to generate full URL ?

Normal URL generation, with simple @controllers.routes.UserController.login, generates only relative URI (such as /login.html). To generate full URL, with host and protocol, we could use absoluteURL()...

Continue Reading β†’

How to output HTML code in Scala template ?

By default, HTML tags are escaped. To return not escaped HTML content, we need to pass by @Html method: @Html(""+variableFromController+"") ...

Continue Reading β†’