我正在尝试从头开始开发springboot应用程序。由于我是springboot的新手,所以我无法添加自动装配的注释……似乎我缺少pom.xml中的某些依赖项
这是场景
pom.xml
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>springboot</groupId>
<artifactId>firstprogram</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.2.RELEASE</version>
</parent>
<name>firstprogram Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.3.6.Final</version>
</dependency>
</dependencies>
<build>
<finalName>firstprogram</finalName>
</build>
</project>
如果我尝试使用Spring MVC添加依赖项。它发出警告,例如spring boot已经添加了那些依赖项。
答案 0 :(得分:0)
确保使用类@Component或@Service注释您的服务,然后在另一个类中使用该服务时,将标记@Autowired添加到该类中。
也许@ComponentScan