You can try wrapping the resource handlers in a path handler. If you can provide sample paths and which goes to which resource that would be helpful.

On Oct 19, 2017 6:22 PM, "Ove Ranheim" <oranheim@gmail.com> wrote:
How do I handle multiple ClassPathResourceManager(s)?
undertowWebApp.getDeploymentInfo().setResourceManager(new ClassPathResourceManager(ClassLoaders.tccl(), MvcResourceConfig.STATIC_FOLDER));
undertowWebApp.getDeploymentInfo().setResourceManager(new ClassPathResourceManager(ClassLoaders.tccl(), MvcResourceConfig.WEBJARS_RESOURCES));
I have different contexts where I want to resolves static files.

-Ove

On 19 Oct 2017, at 16:35, Bill O'Neil <bill@dartalley.com> wrote:

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@gmail.com> wrote:
Hi,

How do I register a resource handler for webjars.


Regards,
Ove


_______________________________________________
undertow-dev mailing list
undertow-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/undertow-dev



_______________________________________________
undertow-dev mailing list
undertow-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/undertow-dev