rpavuluri's picture
scarfbench-dataset (#1)
ca17a67
|
raw
history blame
479 Bytes
# Spring Boot Encoder Application
This is a Spring Boot conversion of the Jakarta EE Encoder example.
## Original vs Spring Boot Conversion
TODO
## Building and Running
### Prerequisites
- Java 17 or higher
- Maven 3.6+
### Build
```bash
mvn clean compile
```
### Run
```bash
mvn spring-boot:run
```
The application will be available at: http://localhost:8080/encoder
### Package
```bash
mvn clean package
```
This creates an executable JAR in the `target/` directory.