Newer
Older
JerseyExercise / src / main / java / com / example / jerseyexercise / JerseyExerciseApplication.java
package com.example.jerseyexercise;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class JerseyExerciseApplication {

    public static void main(String[] args) {
        SpringApplication.run(JerseyExerciseApplication.class, args);
    }

}