Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

WebContent - resources - css - style.css WEB-INF - index.html

public synchronized Restlet createInboundRoot() {
    Router router = new Router(getContext());
    router.attach("/", IndexResource.class); 
    return router;
}

The IndexResource executes an HTML Respresentation (index.html)

In my index.html I have specified a css file. The problem is that it cannot be found.

  <link href="/resources/css/style.css" rel="stylesheet" type="text/css">

I think /resources/css/style.css is going via restlet and not the actual file path. How do I stop the resources folder executing as a servlet (restlet)?

share|improve this question
Possible duplicate: stackoverflow.com/questions/9651019/… – Chris White May 13 '12 at 18:36
try making your link relative "resources/css/style.css" instead of absolute – Sean May 14 '12 at 9:32

1 Answer

Must your css file need to be served by Restlet? If so, you should consider using the Directory class as described below (in your application class):

public Restlet createInboundRoot() {
    Router router = new Router(getContext());
    (...)
    router.attach("/resources", new Directory(getContext(), "file://<STATIC_DIR>"));
}

In this case you need to have css/style.css under the folder.

Hope it helps you. Thierry

share|improve this answer
I would prefer it not to be served by restlet but it always goes through as a servlet. I'm not sure how to stop it.All I attach is: router.attach("/", IndexResource.class); – Decrypter May 16 '12 at 19:55
When you stay <STATIC_DIR> do you mean: C:/Users/<MyUsername>/rest/webapp/ or C:/Users/<MyUsername>/rest/webapp/resources – Decrypter May 16 '12 at 20:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.