Alex
Alex

Reputation: 21

Scan other war files in Wildfly

I want to create a war file which contains an endpoint to access json files. I want to provide these json files in seperated war files, so I am able to "hot enhance" this endpoint.

It should looking something like this:

Is it possible to get this done with wildfly?

Upvotes: 0

Views: 79

Answers (1)

ehsavoie
ehsavoie

Reputation: 3527

You could use exploded managed deployments and update your json files with the cli ore the web console. Thus you would only need a single war file. http://wildfly.org/news/2017/09/08/Exploded-deployments/ for some example

Upvotes: 1

Related Questions