I would like for each user on my app to have a dedicated vanity url in the format http://user1.example.com. How can I implement this in Play Application. Thank you.
|
You can use virtual hosts. From release notes on Play 1.1: The routes file now supports Host matching. this can be useful if action parameters must be extracted from the host parameter. For example, for a SAAS application, you could use:
and then automatically retrieve the client value as for any other request parameter:
That should do it. |
|||||||||
|
|
In a controller method, you can get the domain name from request.domain variable. You can then parse the user name or whatever identifier you want to use from the domain name using something like:
If you plan to use this subdomain check in several methods, you can make a separate domain check method that has @play.mvc.Before annotation and put the user object to renderArgs for later use in the actual invoked controller method and template:
You can also add this domain checker to a separate controller class and include it in every controller where you need it by using @play.mvc.With annotation for the class.
|
|||
|
|
|
I was getting null values and the domain name kept changing to localhost:9000 until I solved it using |
|||
|
|