File size: 479 Bytes
0406663
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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.