Result Maps collection already contains value for xxx.xxx.dao.BaseResultMap錯誤

Li_ll發表於2024-10-11

重複引入jar包 問題

解決方法, 在pom檔案中排除這個jar包

原:

<dependency>
            <groupId>com.hedu</groupId>
            <artifactId>sweet-template-webapp</artifactId>
            <version>1.0</version>
</dependency>

排除後:

<dependency>
            <groupId>com.hedu</groupId>
            <artifactId>sweet-template-webapp</artifactId>
            <version>1.0</version>
            <exclusions>
                <exclusion>
                    <groupId>com.hedu</groupId>
                    <artifactId>sweet-starter-file-client</artifactId>
                </exclusion>
            </exclusions>
</dependency>

專案就可以正常啟動了

相關文章