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>


目录
相关文章
|
5月前
|
缓存 网络协议 Serverless
函数计算操作报错合集之遇到AxiosError: Network Error错误,该如何排查
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
191 1
|
6月前
|
监控 安全 Go
视觉智能开放平台操作报错合集之出现 panic: runtime error: invalid memory address or nil pointer dereference,该如何处理
在使用视觉智能开放平台时,可能会遇到各种错误和问题。虽然具体的错误代码和消息会因平台而异,但以下是一些常见错误类型及其可能的原因和解决策略的概述,包括但不限于:1. 认证错误、2. 请求参数错误、3. 资源超限、4. 图像质量问题、5. 服务不可用、6. 模型不支持的场景、7. 网络连接问题,这有助于快速定位和解决问题。
视觉智能开放平台操作报错合集之出现 panic: runtime error: invalid memory address or nil pointer dereference,该如何处理
|
6月前
Invalid bound statement (not found)错误【已解决】
Invalid bound statement (not found)错误【已解决】
258 1
|
7月前
|
Java
SpringBoot:Invalid bound statement (not found)的原因和解决方案
SpringBoot:Invalid bound statement (not found)的原因和解决方案
|
7月前
|
Java 数据库连接 mybatis
项目移植到原先mybasis项目里出现BindingException: Invalid bound statement (not found): **selectPage
项目移植到原先mybasis项目里出现BindingException: Invalid bound statement (not found): **selectPage
75 1
|
7月前
|
SQL JSON Java
【bug日记】已解决:Invalid bound statement (not found): 找不到对应的Mapper映射类
【bug日记】已解决:Invalid bound statement (not found): 找不到对应的Mapper映射类
Webpack低级错误踩坑瞬间 Error: Child compilation failed:
Webpack低级错误踩坑瞬间 Error: Child compilation failed:
272 0
|
编译器
解决Invalid bound statement (not found)错误~
解决Invalid bound statement (not found)错误~
|
XML SQL 数据格式
Invalid bound statement (not found)错误的可能原因
Invalid bound statement (not found)错误的可能原因
852 0
express学习31-多人管理23错误unexpected identifier
express学习31-多人管理23错误unexpected identifier
94 0
express学习31-多人管理23错误unexpected identifier

热门文章

最新文章