mojarra icon indicating copy to clipboard operation
mojarra copied to clipboard

PLEASE NOTE: This project has moved to Eclipse Foundation and will be archived under the JavaEE GitHub Organization. After Feb. 1, 2021, the new location will be github.com/javaee/mojarra. Mojarra - O...

Results 100 mojarra issues
Sort by recently updated
recently updated
newest added

I have a bean with several `@Produces @Named("someName") @ViewScoped` producers which all return ArrayLists. This caused ClassCastExceptions on postback where elements of one producers list could not be cast to...

[Stackoverflow](https://stackoverflow.com/questions/49071292/primefaces-and-jsf-2-3-javascript-error-cannot-read-property-error-of-null) Seems like the component resources are available (see PrimeFaces HeadRenderer) in the postback but somehow they are not rendered in the response inside the head tag. NOTE: this will...

ELSupport.coerceToType lacks support for class runtime type conversion. I tried to pass a class instance to a converter attribute but failed due to: java.lang.IllegalArgumentException: Cannot convert java.util.Date of type class...

When using a primitive type, I get the following exception in 2.3.4: ``` Caused by: java.lang.NullPointerException at com.sun.faces.cdi.CdiUtils.createConverter(CdiUtils.java:125) ~[javax.faces-2.3.4.jar:2.3.4] ``` It is working using 2.3.3

Please replace: ```java String json = Json.encode(message); ``` with: ```java Jsonb jsonb = JsonbBuilder.create(); // this could also just be a bean? String json = jsonb.toJson(message); ``` com.sun.faces.util.Json.encode only contains...

Please see following excerpt from a [thrown exception](https://f.haeder.net/display/adbba6c6645b411dbe70ea5438862510) I currently try to fix but I'm confused where (JSF template/view) it origins from. ```` java.lang.IllegalArgumentException: at javax.faces.component.UIComponentBase.validateId(UIComponentBase.java:605) at javax.faces.component.UIComponentBase.setId(UIComponentBase.java:422) at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.assignUniqueId(ComponentTagHandlerDelegateImpl.java:438)...

ELFlash.get throws NPE in clustered apps when trying to access flash scope on first request. **Reproducer:** [test.tar.gz](https://github.com/javaserverfaces/mojarra/files/2231491/test.tar.gz) **Steps to reproduce:** 1. Unzip & deploy attached app 2. curl -i http://localhost:8080/test/getvar.xhtml...

Based on this stack overflow post and answer by BalusC it was recommended to create a bug ticket here. https://stackoverflow.com/questions/51382976/omnifaces-loading-unloading-viewscopedbean > This appears to be a bug in Mojarra. It's...

Based on https://arjan-tijms.omnifaces.org/p/jsf-23.html "Updating multiple forms via AJAX", it should be possible to update multiple form at the same time. It only work if you specify the form on the...

I am trying set the HTML tag in outputText, as following: ` TestUtility.getJspToken returns a string "123456789". ### The test result: JSF1.1 ` JSF1.2 ` JSF2.2 ` In the JSF1.1,...