https://github.com/apache/myfaces-tobago
Apache MyFaces Tobago
https://github.com/apache/myfaces-tobago
java javaee jsf myfaces web-framework
Last synced: 6 months ago
JSON representation
Apache MyFaces Tobago
- Host: GitHub
- URL: https://github.com/apache/myfaces-tobago
- Owner: apache
- Created: 2017-08-18T08:17:41.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-06-26T05:59:40.000Z (6 months ago)
- Last Synced: 2025-06-30T18:17:49.268Z (6 months ago)
- Topics: java, javaee, jsf, myfaces, web-framework
- Language: Java
- Homepage: https://myfaces.apache.org
- Size: 126 MB
- Stars: 26
- Watchers: 14
- Forks: 29
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://opensource.org/licenses/Apache-2.0)
[](https://github.com/apache/myfaces-tobago/actions/workflows/tobago-ci.yml)
[](https://github.com/apache/myfaces-tobago/actions/workflows/codeql-analysis.yml)
[](https://ci-builds.apache.org/job/MyFaces/job/Tobago%20pipeline/job/main/)
# Apache Tobago
Apache MyFaces Tobago is a JSF component framework that pays special attention to security and is optimized for
business applications.
Tobago supports custom themes based on the popular Bootstrap framework and frees the user from having to develop
complex CSS and JavaScript components.
Compared to many other JSF frameworks, Tobago is still being actively developed and is used in many projects.
# Getting Started
## Prerequisites
* A Git client to check out this project (may part of your IDE)
* [JDK17]( https://www.oracle.com/technetwork/java/javase/downloads) or higher
* [Maven 3](https://maven.apache.org/download.cgi)
## Building
In the project directory you can use:
```
mvn clean install
```
to build the project with all submodules.
This will put all necessary artifacts into your local repository.
If there are changes in the `tobago-theme` module in TypeScript or other sources,
you need to build with **frontend** profile:
```
mvn clean install -Pfrontend
```
## Live Demo
You can find a live demo of all components at [https://tobago-vm.apache.org/](https://tobago-vm.apache.org/).
## Examples
See `tobago-example` directory for some simple examples on how to use Tobago:
* [tobago-example-blank](tobago-example/tobago-example-blank) a minimal hello world application,
* [tobago-example-demo](tobago-example/tobago-example-demo) a demo and documentation application,
* [tobago-example-spring-boot](tobago-example/tobago-example-spring-boot) same demo using spring-boot.
**Demo**
```shell
mvn clean install
cd tobago-example/tobago-example-demo
```
***Jetty, MyFaces and Weld***
If you want to run the demo locally you need to run the following command:
```shell
mvn jetty:run -Pjetty -Pdev
```
Browse to the local URL http://localhost:8080/
You can also run the demo with different servers and JSF implementations:
***Jetty, Mojarra and Weld***
```shell
mvn jetty:run -Pjetty -Pdev -Djsf=mojarra-4.0
```
Browse to the local URL http://localhost:8080/
***Tomcat, MyFaces and Weld***
```shell
mvn cargo:run -Ptomcat
```
Browse to the local URL http://localhost:8080/tobago-example-demo/
***TomEE***
```shell
mvn tomee:run -Ptomee
```
Browse to the local URL http://localhost:8080/
***Open Liberty***
```shell
mvn liberty:run -Pliberty
```
Browse to the local URL http://localhost:9080/
***Quarkus***
```shell
mvn clean install
cd tobago-example/tobago-example-quarkus
mvn clean package quarkus:dev
```
Browse to the local URL http://localhost:8080/
***Spring Boot***
```shell
mvn clean install
cd tobago-example/tobago-example-spring-boot
mvn clean package spring-boot:run
```
Browse to the local URL http://localhost:8080/
***Tomcat in Docker***
```
mvn clean package -Pdocker
docker run -p 8080:8080 myfaces/tobago-example-demo:latest
```
Browse to the local URL http://localhost:8080/
# Issue Tracking
If you find any issues regarding MyFaces Tobago you can use the [Apache Issue Tracker](https://issues.apache.org/jira/projects/TOBAGO) to report them.
# Contributing
[Pull requests](https://help.github.com/articles/creating-a-pull-request) are welcome; see the [contributor guidelines](CONTRIBUTING.md) for details.
# Licensing
The terms for software licensing are detailed in the [LICENSE.txt](LICENSE.txt) file.