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
Jakarta EE 10/Faces 4.0/Glassfish, example project: https://github.com/hantsy/jakartaee10-sandbox/tree/master/faces
Given Facelet written in pure Java:
@View("/hello-facelet.xhtml") @ApplicationScoped class HelloFacelet extends Facelet{ }
I have enabled automatic extensionless mapping in web.xml.
web.xml
When deploying to Glassfish,
mvn clean package cargo:run
open a browser to navigate http://localhost:8080/faces-examples/hello-facelet, it does not work.
http://localhost:8080/faces-examples/hello-facelet
I have to append the .xhtml in the url.
.xhtml
The text was updated successfully, but these errors were encountered:
Make sure that ViewHandler#getViews() also returns programmatic facelets
3e33093
#5362
460e797
Optimized finding @view beans now the value attribute is @Nonbinding
549fc50
Revert "Optimized finding @view beans now the value attribute is @Non…
0ed6ffa
…binding #5362" This reverts commit 549fc50.
No branches or pull requests
Jakarta EE 10/Faces 4.0/Glassfish, example project: https://github.com/hantsy/jakartaee10-sandbox/tree/master/faces
Given Facelet written in pure Java:
I have enabled automatic extensionless mapping in
web.xml
.When deploying to Glassfish,
open a browser to navigate
http://localhost:8080/faces-examples/hello-facelet
, it does not work.I have to append the
.xhtml
in the url.The text was updated successfully, but these errors were encountered: