Issue Description
NoResourceFoundException occurs when trying to load Bootstrap bundle (bootstrap/5.2.3/dist/js/bootstrap.bundle.min.js) due to a mismatch between the WebJar NPM artifact path structure and the expected resource path.
Root Cause
The application is using the org.webjars.npm dependency for Bootstrap, which has a different path structure than what the application expects.
Solution
A pull request (#353) has been created to fix this issue by:
- Changing the Bootstrap WebJar dependency from org.webjars.npm to org.webjars
- Maintaining the same version (${webjars-bootstrap.version})
This change will ensure the correct path structure for Bootstrap resources, resolving the NoResourceFoundException.
Related Information