We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following project structure and the project-b has a (maven) dependency to project-a.
If i run quarkus:dev on project-b, it displays the index.html and logo.svg of project-a.
It would be great if project-a's static asses get overwritten if they exist in project-b's META-INF/resources directory.
project-a/ ├─ src/ │ ├─ main/ │ │ ├─ resources/ │ │ │ ├─ META-INF/ │ │ │ │ ├─ resources/ │ │ │ │ │ ├─ index.html │ │ │ │ │ ├─ logo.svg
project-b/ ├─ src/ │ ├─ main/ │ │ ├─ resources/ │ │ │ ├─ META-INF/ │ │ │ │ ├─ resources/ │ │ │ │ │ ├─ index.html │ │ │ │ │ ├─ logo.svg
No response
The text was updated successfully, but these errors were encountered:
The resources are loading from the classloader. So, the order depends on the classloader order. I'm wondering if we can influence it in this case.
@ia3andy Did you already encounter this?
Sorry, something went wrong.
This might be related to @dmlloyd work on classlaoders.
Any proposal for run time class loading (#43749) should include child-first resource loading as a feature.
No branches or pull requests
Description
I have the following project structure and the project-b has a (maven) dependency to project-a.
If i run quarkus:dev on project-b, it displays the index.html and logo.svg of project-a.
It would be great if project-a's static asses get overwritten if they exist in project-b's META-INF/resources directory.
project-a/
├─ src/
│ ├─ main/
│ │ ├─ resources/
│ │ │ ├─ META-INF/
│ │ │ │ ├─ resources/
│ │ │ │ │ ├─ index.html
│ │ │ │ │ ├─ logo.svg
project-b/
├─ src/
│ ├─ main/
│ │ ├─ resources/
│ │ │ ├─ META-INF/
│ │ │ │ ├─ resources/
│ │ │ │ │ ├─ index.html
│ │ │ │ │ ├─ logo.svg
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: