If I have a relative path to a static asset (flash/blah.swf), what is the best way to programmatically convert this to an absolute URL (http://localhost/app/flash/blah.swf)? Or what is the best way to get the base URL of the Wicket application? I've tried using RequestUtils.toAbsolutePath but it doesn't seem to work reliably and is frequently throwing exceptions. This needs to work on all servers the app is deployed to.
|
feedback
|
worked for me. | |||||
feedback
|
|
A standard idiom for using it is
| |||
|
feedback
|
|
I ended up using something like this after adding a
| |||
|
feedback
|
|
You can use some folders:
So:
I think you have to use something like this | |||||
feedback
|