首页 > 其他分享 >Result Maps collection already contains value for xxx.xxx.dao.BaseResultMap错误

Result Maps collection already contains value for xxx.xxx.dao.BaseResultMap错误

时间:2024-10-11 09:11:36浏览次数:1  
标签:already 1.0 hedu sweet dao xxx com

重复引入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>

项目就可以正常启动了

标签:already,1.0,hedu,sweet,dao,xxx,com
From: https://www.cnblogs.com/lilulin/p/18457699

相关文章

  • 解决方案:java.lang.IllegalArgumentException: 为此cookie指定的域[localhost:xxxx]无
    转载:https://blog.csdn.net/weixin_43724845/article/details/116198741问题原因:Tomcat 8更换默认的CookieProcessor实现为Rfc6265CookieProcessor,之前的实现为LegacyCookieProcessor。前者是基于RFC6265,而后者基于RFC6265、RFC2109、RFC2616。解决方式:修改tomcat......
  • No instances available for XXX
     springcloud使用nacos作为服务发现,ribbon做负载均衡,然后报错,Noinstancesavailableforcloud-alibaba-study。版本  Springboot 2.6.7  Springcloud 2021.0.3  Springcloudalibaba2021.0.6.0过程  当我引入nacos包如下,2021.0.6.0包移除了ribbon,(除非......
  • mysql 连接失败:message from server: "Host 'xx.xxx' is not allowed to connect to t
    前言mysql连接失败:messagefromserver:"Host'192.168.xx.xxx'isnotallowedtoconnecttothisMySQLserver"解决错误信息表明你尝试从IP地址192.168.xx.xxx连接到MySQL服务器,但是该IP地址没有被授权连接权限。为了解决这个问题,你需要确保你的MySQL用户权......
  • Idea启动SpringBoot程序报错:Veb server failed to start. Port 8082 was already in u
    目录Idea启动SpringBoot程序报错:Vebserverfailedtostart.Port8082wasalreadyinuse一、解决办法1、查找占用端口的进程2、结束进程①在任务管理器中终结指定pid的进程②在命令提示符中结束进程 3、重新启动项目4、对于macOS和Linux系统二、博主亲历三、为......
  • java+vue计算机毕设XXX公司疫情信息管理平台【源码+程序+论文+开题】
    本系统(程序+源码)带文档lw万字以上文末可获取一份本项目的java源码和数据库参考。系统程序文件列表开题报告内容研究背景随着全球疫情的持续演变,疫情防控成为了社会各界关注的焦点。特别是在物流行业,作为社会经济的重要支柱,其人员与物资的流动管理直接关系到疫情防控的成......
  • idea启动卡在启动界面不动弹,java.net.BindException: Address already in use: bind
    早上刚想打开idea发现卡在启动界面无法动弹任务管理器关闭idea和重启机器都无法解决,搜了一下网上的教程把解决方法记录下:打开AppData\Local\JetBrains\IntelliJIdea2021.2\log查看idea.log发现详细错误如下:2024-09-2908:46:57,944[10149]ERROR-llij.ide.plugins.Plugi......
  • 通过torndao 起一个web服务
    需要安装包tornado==6.4.1redis==4.3.3示例代码importtornado.ioloopimporttornado.webfromredis.asyncioimportRedisclassMainHandler(tornado.web.RequestHandler):asyncdefget(self):key=self.get_argument("key","default_key......
  • [ECharts] There is a chart instance already initialized on the dom.
    [ECharts]Thereisachartinstancealreadyinitializedonthedom.  报错解释:这个错误表示在同一个DOM元素上已经初始化了一个ECharts图表实例,而你又尝试去在同一个DOM上初始化另一个图表实例。ECharts不允许在同一个DOM上叠加多个实例。解决方法:   在尝试初始化新......
  • 易优cms错误\core\library\think\db\Connection.php第xxx
    当使用易优CMS建站时,出现“core>library>think>db>Connection.php第xxx行左右”这个错误时,确实不一定是由数据库连接错误引起的。这个错误可能是由于模板内的代码问题导致的。以下是一些常见的原因及排查方法:常见原因及排查方法易优CMS标签错误:检查模板文件中的易优CMS标签......
  • .NetCore MySqlException 多线程中(There is already an open DataReader associated w
    问题描述:其实标题只是遇到问题的其中之一,遇到三种异常信息如下:Lockwaittimeoutexceeded;tryrestartingtransaction大概意思:超过锁定等待超时;尝试重新启动事务 ThereisalreadyanopenDataReaderassociatedwiththisConnectionwhichmustbeclosedfirst.大......