invalid bound statement (not found) - 接手一个老项目时报的几个错误处理方案

简介: invalid bound statement (not found) - 接手一个老项目时报的几个错误处理方案

invalid bound statement (not found) - 接手一个老项目时报的几个错误处理方案


1、invalid bound statement (not found)


在pom.xml的中配置了resource


<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
    <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.properties</include>
          <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>**/*.properties</include>
          <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
      </resource>
    </resources>


2、org.springframework.web.SpringServletContainerInitializer cannot be cast to javax.servlet.ServletCon


<!-- 导入java ee jar 包(重点在下方依赖红色处,不加上运行范围,编译时会冲突) -->
<dependency>
    <groupId>javax</groupId>
    <artifactId>javaee-api</artifactId>
    <scope>provided</scope>
    <version>7.0</version>
</dependency>

3、maven集成tomcat7


<plugin>
             <groupId>org.apache.tomcat.maven</groupId>
             <!-- tomcat7的插件, 不同tomcat版本这个也不一样 -->
             <artifactId>tomcat7-maven-plugin</artifactId>
             <version>2.1</version>
             <configuration>
                 <!-- 通过maven tomcat7:run运行项目时,访问项目的端口号 -->
                 <port>9090</port>
                 <!-- 项目访问路径  本例:localhost:9090,  如果配置的aa, 则访问路径为localhost:9090/aa-->
                 <path>/</path>
                 <uriEncoding>UTF-8</uriEncoding>
             </configuration>
 </plugin>


目录
相关文章
|
Java 应用服务中间件 微服务
【Java异常】feign.FeignException: status 400 reading xxx 异常解决方案
【Java异常】feign.FeignException: status 400 reading xxx 异常解决方案
134 0
|
5月前
|
监控 前端开发 Serverless
函数计算操作报错合集之遇到报错:{"ErrorCode":"ResourceThrottled","ErrorMessage":"Reserve resource exceeded limit"},该如何处理
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
3月前
|
存储 API 网络安全
【Azure APIM】调用APIM的备份接口时候遇见InvalidParameters错误
【Azure APIM】调用APIM的备份接口时候遇见InvalidParameters错误
|
3月前
|
开发工具 异构计算 Windows
Electron V8排查问题之"error: redefinition of 'DXVA*_AV1'" 错误如何解决
Electron V8排查问题之"error: redefinition of 'DXVA*_AV1'" 错误如何解决
35 3
|
4月前
|
监控 Serverless 前端开发
函数计算操作报错合集之部署报错提示 "Disk is required but not provided" ,该如何解决
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
5月前
Invalid bound statement (not found)错误【已解决】
Invalid bound statement (not found)错误【已解决】
92 1
|
5月前
|
监控 网络协议 Serverless
函数计算操作报错合集之遇到报错:{"ErrorCode":"ResourceThrottled","ErrorMessage":"Reserve resource exceeded limit"}该如何处理
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
6月前
|
Java
SpringBoot:Invalid bound statement (not found)的原因和解决方案
SpringBoot:Invalid bound statement (not found)的原因和解决方案
|
6月前
|
Java 数据库连接 mybatis
项目移植到原先mybasis项目里出现BindingException: Invalid bound statement (not found): **selectPage
项目移植到原先mybasis项目里出现BindingException: Invalid bound statement (not found): **selectPage
61 1
|
6月前
|
SQL JSON Java
【bug日记】已解决:Invalid bound statement (not found): 找不到对应的Mapper映射类
【bug日记】已解决:Invalid bound statement (not found): 找不到对应的Mapper映射类