在使用maven+spring+mybatis时,配置文件没有问题,但运行时一直出现如下错误。后来发现在classes目录下面只有编译后的mapper.class文件,并没有mapper.xml文件。原因就是maven并没有将mapper.xml文件编译进去。
错误信息如下:
2015-06-14 16:30:40.693:WARN:oejs.ServletHandler:/wee/user/users org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.wcy.wee.mapper.UserMapper.findUserList at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:196) at org.apache.ibatis.binding.MapperMethod.<init>(MapperMethod.java:44) at org.apache.ibatis.binding.MapperProxy.cachedMapperMethod(MapperProxy.java:59) at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:52) at com.sun.proxy.$Proxy25.findUserList(Unknown Source) at org.wcy.wee.service.impl.UserServiceImpl.findUserList(UserServiceImpl.java:24) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:317) at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157) at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:99) at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:281) at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207) at com.sun.proxy.$Proxy28.findUserList(Unknown Source) at org.wcy.wee.controller.UserController.list(UserController.java:22) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:221)
解决法办:在pom.xml中增加如下配置:
<resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> </resources>
相关推荐
Maven更新问题 今天Maven在更新的时候发现... http://maven.aliyun.com/nexus/content/repositories/central/ central junit junit Address/ http://jcenter.bintray.com/ central alimaven aliyun maven htt
commons-lang3.3.1.jar、Apache Commons包中的一个,包含了一些数据类型工具类,是java.lang.*的扩展。必须使用的jar包。为JRE5.0+的更好的版本所提供 Jar文件包含的类: META-INF/MANIFEST.MFMETA-INF/LICENSE....
在<plugins></plugins>中添加 <groupId>org.apache.maven.plugins <artifactId>maven-compiler-plugin <version>3.8.1 <source>1.8 <target>1.8 </plugin>
import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.conn.scheme.Scheme; ...
在使用Mybatis框架时,你可能会遇到`org.apache.ibatis.exceptions.PersistenceException`这样的异常。这个异常通常表示在执行数据库查询操作时遇到了问题。本篇将详细分析这个问题并提供解决方法。 ### 问题概述 ...
3. **commons-pool.jar**:Apache Commons Pool是对象池化的实现,DBCP使用这个库来管理数据库连接的生命周期,确保连接的有效利用和回收。 加载这些库到工程的方式因开发环境而异,以下是一些常见方法: - **IDE...
jar包分享,你懂的 com.springsource.org.apache.commons.io-1.4.0.jar
- org.apache.ibatis 包:MyBatis的主要API,如SqlSessionFactoryBuilder、SqlSessionFactory、SqlSession等。 - org.apache.ibatis.session 包:包含了SqlSession和SqlSessionFactory的相关类。 - org.apache....
org.apache.commons.lang jar包
org.apache.poi JAR包,解决import org.apache.poi.hssf.usermodel.HSSFWorkbook; 支持office全系excel文件解析。 import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; ...
Apache POI 是一个开源项目,专门用于处理Microsoft Office格式的文件,如DOCX、XLSX和PPTX等。`org.apache.poi.xwpf.converter` 模块是Apache POI的一部分,它提供了将Microsoft Word 2007(DOCX)文档转换为其他...
org.apache.axis2.jar
idea创建Maven项目时,报错显示Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources,并且Maven插件内看不到 mybatis-generator。如下图: 折腾了好久发现配置放错地方了,...
maven 整合springmvc spring mybatis 的pom.xml文件。一般需要使用的jar包都在这里面了
"淘淘商城网上项目学习案例springMVC+Spring+maven+mybatis+mysql.zip" 是一个集成多种技术的电子商务平台的示例项目。这个案例涵盖了Web开发中的几个关键组件,包括Spring MVC、Spring、Maven、MyBatis以及MySQL...
【标题】:“maven和MyBatis” 在Java开发领域,Maven和MyBatis是两个非常关键的工具。Maven是一个项目管理工具,而MyBatis是一个持久层框架。它们各自扮演着不可或缺的角色,共同助力Java开发者构建高效、可维护的...
2. 引入Spring、Mybatis和MySQL驱动相关的jar包或使用Maven/Gradle进行依赖管理。 3. 创建Mybatis的配置文件(mybatis-config.xml),定义数据源、事务管理器等。 四、Spring配置 1. 数据源配置:在Spring的配置...
Maven坐标:org.mybatis:mybatis:3.5.9; 标签:mybatis、jar包、java、中文文档; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构保持不变,...
Maven坐标:org.mybatis:mybatis-spring:2.0.6; 标签:spring、mybatis、jar包、java、中文文档; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码...
Classes contained in spring-mock.jar: org.springframework.mock.jndi.ExpectedLookupTemplate.class org.springframework.mock.jndi.SimpleNamingContext.class org.springframework.mock.jndi....