Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8658335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:44:24+00:00 2026-06-12T15:44:24+00:00

Using Play Framework 2.0.4, I’d like to define my static content URLS differently regarding

  • 0

Using Play Framework 2.0.4, I’d like to define my static content URLS differently regarding the environment.

In DEV mode, it would be /public/{here}, so using the default configuration of

GET     /public/*file               controllers.Assets.at(path="/public", file)

is good, but in PROD, I want to use the http://static.mydomain.com/ base URL.

At first, I thought about changing the Assets like this :

 GET     /public/*file               controllers.Assets.at(path="http://static.mydomain.com/", file)

But of course, it doesn’t work.

So I was thinking about using a static method that would look in the application.conf file for a application.staticBaseUrl parameter, and return either /public/{here} or http://static.mydomain.com/{here}, or anything defined in the application.conf param.

But I’m not sure if it’s the best way, neither if there isn’t already a better way to do so.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T15:44:26+00:00Added an answer on June 12, 2026 at 3:44 pm

    You can add static wrapper ie in you Application controller:

    public static String wrapLink(play.mvc.Call uri) {
        return wrapLink(uri.toString());
    }
    
    public static String wrapLink(String uri) {
        return (Play.application().isDev()) ? "/public" + uri : "http://domain.tld" + uri;
    }
    

    so you can use it in your views with:

    link from String:
        @Application.wrapLink("/bootstrap/css/bootstrap.min.css")
    
    or from Call
        @Application.wrapLink(routes.Application.index)
    

    Expanded version

    I’m using also expanded version of this when working with several CDN’s ie (or using dummy subdomain-CDNs for faster resource downloading):

    Application.conf

    cdn.cdn1="http://cdn1.domain.tld"
    cdn.cdn2="http://cdn2.domain.tld"
    

    controller:

    public static String wrapLink(String cdnId, String uri) {
        return (Play.application().isDev()) 
            ? "/public" + uri 
            : Play.application().configuration().getString("cdn."+cdnId)+ uri;
    }
    

    view:

    @Application.wrapLink("cdn1", "/bootstrap/css/bootstrap.min.css")
    @Application.wrapLink("cdn2", "/images/abc.jpg")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Play Framework 1.2.4 with PostgreSQL and JPA . I would like
I'm using play framework version 1.2.5 and I would like to retrieve all the
Using Play Framework, you can do something like this: public static void mymethod() {
Using play framework 1.2.4 with scala. I have few play jobs that looks like
Using play framework 2.0 in Java mode and I want to pass a list
Using The Play Framework how easy would it be to allow an admin user
I'm using Play framework. I have a JSONObject which has a structure like the
Let's say I have a Student entity like this implemented using the Play Framework's
I would like to use Lift-JSON (v2.2) with Play framework to parse a JSON
I am using Play Framework 2.0 with Scala. So I have an action that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.