找不到xml找不到类

Posted alwaysbecoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了找不到xml找不到类相关的知识,希望对你有一定的参考价值。

解决 java.io.FileNotFoundException: class path resource [xxx.properties] cannot be opened because it does not exist

 

<build>
        <resources>
            <resource>
                <directory>src/main/recourse</directory>
                <includes>
                    <include>**/*.xml</include>
                    <include>**/*.properties</include>
                </includes>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>

 

 

 

解决java.lang.ClassNotFoundException

说一下我的情况:A项目依赖B项目的1.1.1版本的jar包。可是我用maven打包B项目的时候是打的2.2.2版本的jar包。

所以A项目找不到所依赖的B项目1.1.1版本,自然也找不到需要的class类。所以修改B项目pom.xml中的打包版本为1.1.1即可

    <groupId>com.xxx</groupId> 
    <artifactId>B-war</artifactId>
    <packaging>war</packaging>
    <version>1.1.1</version> 

 

你也许不是这种情况,需要找找别的办法。

 

以上是关于找不到xml找不到类的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin 在片段中找不到按钮 ID,为啥?

Android Studio XML 布局文件存在但我找不到

找不到来自非 activity_main.xml 的视图

导航组件:找不到 NavController

导航组件:找不到NavController

找不到xml找不到类