-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
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
illegal-access, jdk-11, jsr376, on jboss wildfly 17 #1089
Comments
I was experimenting with bootsfaces-1.4.1 on wildfly 17 , received: WARNING: An illegal reflective access operation has occurred For details, please see the JBoss forum post: https://developer.jboss.org/message/990456?et=watches.email.thread#990456 The combination of the bootsfaces META-INF/faces-config.xml Causes the JBoss server deployment to attempt to treat java.util.Date as a managed bean, which then causes java-11 to issue illegal-access warnings. Thanks to JBoss developer, Jaikiran Pai for the root cause investigation support. My $0.1 Kind regards Stephen Doody |
@StephenDoody Please have a look at the current developer version 1.4.2-SNAPSHOT. I've removed |
@stephanrauh Please verify which maven repo holds that published artifact? could not locate it, got: Could not find artifact net.bootsfaces:bootsfaces:pom:1.4.2-SNAPSHOT in Maven Central (https://repo1.maven.org/maven2/)
|
It's in the snapshot directory of Maven Central. Try this one: <repositories>
<repository>
<id>central</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories> |
@stephanrauh Please advise when the change becomes permanent. Thank you for the prompt response. Kind Regards |
We solved the issue by "remove undocumented bean #{now}" #1086 We recommend using the following third library: |
No description provided.
The text was updated successfully, but these errors were encountered: