migoo-spring-boot-starter-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.migoo.springboot</groupId> <artifactId>migoo-spring-boot-starter-web</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>migoo-framework-parent</artifactId> <groupId>xyz.migoo.springboot</groupId> <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>migoo-spring-boot-starter-web</artifactId> <name>${project.artifactId}</name> <description>spring-web 组件</description> <url>https://github.com/XiaoMiSum/springboot-migoo-framework</url> <licenses> <license> <name>MIT</name> <url>https://github.com/XiaoMiSum/migoo/blob/master/LICENSE</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:XiaoMiSum/springboot-migoo-framework.git</connection> <developerConnection>scm:git:git@github.com:XiaoMiSum/springboot-migoo-framework.git</developerConnection> <url>https://github.com/XiaoMiSum/springboot-migoo-framework</url> </scm> <developers> <developer> <name>xiao mi</name> <email>mi_xiao@qq.com</email> <organization>github</organization> <organizationUrl>https://github.com/XiaoMiSum/springboot-migoo-framework</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>xyz.migoo.springboot</groupId> <artifactId>migoo-spring-boot-starter-common</artifactId> <type>jar</type> </dependency> <!-- Web 相关 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <type>jar</type> </dependency> <!-- spring boot 配置所需依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> <type>jar</type> </dependency> <!-- 验证相关 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> <type>jar</type> </dependency> </dependencies> </project>