Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teedjay/quarkus-jsf
Testing Quarkus with JSF and PrimeFaces
https://github.com/teedjay/quarkus-jsf
java jsf quarkus
Last synced: 14 days ago
JSON representation
Testing Quarkus with JSF and PrimeFaces
- Host: GitHub
- URL: https://github.com/teedjay/quarkus-jsf
- Owner: teedjay
- Created: 2019-12-15T11:13:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T19:50:41.000Z (almost 3 years ago)
- Last Synced: 2024-11-14T01:34:46.242Z (2 months ago)
- Topics: java, jsf, quarkus
- Language: Java
- Homepage:
- Size: 110 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quarkus-jsf
Testing Quarkus with JSF (MyFaces) and PrimeFaces## TODO
- [x] Adding Primeflex and Primeblocks
- [ ] WC native (pure WebComponents)
- [ ] [Deep Linking with JSF](https://stackoverflow.com/questions/10724428/how-do-i-process-get-query-string-url-parameters-in-backing-bean-on-page-load)
- [ ] [Old tips for get processing](http://balusc.omnifaces.org/2011/09/communication-in-jsf-20.html)
- [ ] Test out lit-html templating with lit-elements as basis## Running the application in dev mode
You can run your application in dev mode that enables live coding using:
```
./mvnw clean quarkus:dev
```## Running the application
To build a package and start it from command line do
```
./mvnw clean package -Dmaven.test.skip=true
java -jar target/quarkus-app/quarkus-run.jar
```## What does this project do?
It uses Quarkus dev services to create a postgres database with some initial data
and server crud and jsf on top of that.
```
open http://localhost:8080/index.xhtml
```You can access the swagger-ui to create more data or manipulate existing.
```
open http://localhost:8080/q/swagger-ui/
```