我的应用程序的一个小功能,是在春季启动时开发的,其中休息是在spring mvc中开发的。 我可以在我的spring mvc应用程序中将spring boot应用程序作为外部jar包含在内吗? 更确切地说,spring boot app是一个过滤器,spring mvc是一个常规的hello world mvc。 我想在spring mvc中使用filter作为外部jar。但是,当我这样做的应用程序,运行作为一个弹簧靴而不是春天mvc。它在春季mvc应用程序中的thorws autowire异常。
答案 0 :(得分:0)
创建自己的基于Spring Boot的项目的最简单方法是访问Spring Initializr,填写项目详细信息,选择选项,然后下载Maven构建文件或捆绑项目作为zip
档案。
此处还有Maven开始使用Spring Boot的pom.xml
文件示例:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>your.groupid</groupId>
<artifactId>artifactId</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- then you can add any other Spring Boot dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>