As we mentioned in Chapter 1, Introduction to Quarkus Core Concepts, you can include static resources such as HTML pages, JavaScript, CSS, or images in the src/main/resources/META-INF/resources folder. An index.html page is provided as a marker in our project, as shown in the project's hierarchy:
$ tree src src ├── main │ ├── docker │ ├── java │ │ └── com │ │ └── packt │ │ └── quarkus │ │ └── chapter4 │ │ ├── CustomerEndpoint.java │ │ ├── Customer.java │ │ ├── CustomerRepository.java │ └── resources │ ├── application.properties │ └── META-INF │ └── resources │ ├── index.html
In order to connect to our REST endpoint, we will include a JavaScript framework called AngularJS and some CSS styling in the head ...