Wallkan
Wallkan

Reputation: 470

Adding a module to Wildfly while running

What happens when I add a module to Wildfly while it is running? I mean if I phisically copy under the modules directory a new directory with all my artifacts, what does it do? Is it aware of the new directory and why? Or the module will be loaded at the next restart?

Upvotes: 0

Views: 47

Answers (1)

ehsavoie
ehsavoie

Reputation: 3517

The modules are lazyingly loaded so it won't get loaded until it is required.

Upvotes: 2

Related Questions