[undertow-dev] Resource handler and Webjars

Bill O'Neil bill at dartalley.com
Thu Oct 19 10:35:33 EDT 2017


You should be able to use a ClassPathResourceManager, something along these
lines. This should read files from the classpath which would include the
jars. As long as you find the right file path it should work.

ResourceManager resourceManager = new
ClassPathResourceManager(CurrentClass.class.getClassLoader(),"someprefix");
ResourceHandler handler = new ResourceHandler(resourceManager);
handler.setCacheTime((int)TimeUnit.HOURS.toSeconds(4));


On Wed, Oct 18, 2017 at 3:50 PM, Ove Ranheim <oranheim at gmail.com> wrote:

> Hi,
>
> How do I register a resource handler for webjars.
>
> E.g. https://github.com/webjars/bootstrap-sass
>
> Regards,
> Ove
>
>
> _______________________________________________
> undertow-dev mailing list
> undertow-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/undertow-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/undertow-dev/attachments/20171019/2b5b7ba4/attachment.html 


More information about the undertow-dev mailing list