gpt4 book ai didi

java - 为什么我的 Java 资源目录中有一个红色的 x?

转载 作者:行者123 更新时间:2023-11-30 08:19:03 24 4
gpt4 key购买 nike

我在eclipse 4.4.2中使用maven创建了一个web项目,我的spring版本是3.2.7.RELEASE,我可以在tomcat 7中顺利运行该项目,但是我的Java Resources目录上有一个红色的x,并且我只是找不到任何问题。我的项目树: my project tree

我的 Java 构建路径配置: Java Build Path conf

我的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>com.alex</groupId>
<artifactId>mywebapp</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>mywebapp Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
</dependencies>
<properties>
<spring.version>3.2.7.RELEASE</spring.version>
</properties>
<build>
<finalName>mywebapp</finalName>
</build>
</project>

我的applicationContext.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd">

<context:component-scan base-package="com.alex.mywebapp" />

<bean id="helloWorldService" class="com.alex.mywebapp.HelloWorldService">
<property name="name" value="Alex" />
</bean>
</beans>

我的控制台没有问题,有人有什么想法吗?

提前谢谢您!

最佳答案

就像 FMC 所说,标记选项卡将告诉您警告和错误及其描述。有时,此错误与项目构面相关。属性>项目构面>动态 Web 模块(取消选中)和 Java(更改为 pom 中安装或设置的内容)> 好的

关于java - 为什么我的 Java 资源目录中有一个红色的 x?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29230887/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com