Spring Java项目中的导入组织问题

时间:2019-02-23 06:34:25

标签: java spring

我是Java的新手,还是spring的新手... 我正在使用以下链接创建我的第一个java spring应用程序:

https://www.tutorialspoint.com/spring/spring_hello_world_example.htm

但是我在MainApp.jav-上收到此错误 导入单位无法解析。

请参阅给出的链接,了解我遵循的步骤。 请注意,我没有创建Maven项目。

请帮助... enter image description here

3 个答案:

答案 0 :(得分:0)

您必须在pom文件中添加依赖项以进行导入。添加依赖项时,会将jar文件添加到您的maven或任何其他项目中,然后可以导入所需的组织。

答案 1 :(得分:0)

问题已解决! 我所做的-删除了导入引用,并通过其类名自动解决了该问题。

答案 2 :(得分:-1)

您需要在项目中具有依赖项才能获取导入语句。 将其添加到pom.xml中以解决该问题。

<properties>
<org.springframework.version>3.0.5.RELEASE</org.springframework.version>
</properties>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
<version>${org.springframework-version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.web.servlet</artifactId>
<version>${org.springframework-version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.transaction</artifactId>
<version>${org.springframework-version}</version>
</dependency>