在一个项目/应用程序Java中运行Springboot和Rest端点

时间:2016-02-02 17:32:32

标签: java spring rest tomcat

我是否能够或无法在一个应用程序中运行spring boot stuff和REST端点,这让我很困惑。目前我将它们放在单独的项目目录中,运行springboot UI,其中包含:

@SpringBootApplication
public class LeagueProjectUiApplication {

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

和REST休息端点:

mvn tomcat7:run

我的jersey和tomcat东西在我的pom.xml中声明

休息:

@Path("/university")
public class University {

@GET
@Path("/{universitycode}")
@Produces(MediaType.APPLICATION_JSON)
public Response returnSingleSummoner(
        @PathParam("universitycode") String universityCode) {

}

同时运行SpringBoot和REST端点的最佳方法是什么,或者我完全糊涂了!

感谢。

1 个答案:

答案 0 :(得分:0)

当您说REST端点时,您的意思是泽西岛端点吗?

Spring Boot支持Jersey,正如您所看到的那样,例如,here,因此,只要请求路径不同,理论上就不会阻止您将所有内容放在一个应用程序中。