标签:mybatis
spring-mybatis 报错
Error creating bean with name “sqlSessionFactory” defined in class path resource [config/yb-spring.xml]: Initialization of bean failed; nested exception is java.lang.re……
SpringMVC+mybatis 关于HttpSessionListener的sessionDestroye
在使用SpringMVC+mybatis框架时,想要在session到期后,可以更新数据库中用户在线状态。 于是本人自定义一个类 SessionListener implements HttpSessionListener,并实现了方法sessionDestroyed。 public class SessionListener implements Http……
mybatis操作insert,delete等操作怎么样通过返回判断能否成功
最近的项目中用到mybatis处理dao层,在配置文件中配置了<setting name=”defaultExecutorType” value=”BATCH” /> 这样的话能提高效率,但是通过返回判断能否操作成功就出问题了,假如去掉<setting name=”defaultE……
救命:一个看似简单的批量更新的死锁问题~
数据是mysql 5.6 表引擎是innoDB,DAO是mybatis3。 表结构如下: 一个主表:TIDE,记录每个港口每天潮汐的概述; 另一个潮汐分时记录表:TIDE_HOURLY,记录每个TIDE_ID对应的分时潮汐信息 create table TIDE ( TIDE_ID INT(10) not null AUTO_INCREMENT ……
mybatis在tomcat调试过程中,自动部署后会报错
21:32:31.907 [ContainerBackgroundProcessor[StandardEngine[Catalina]]] ERROR o.s.web.context.ContextLoader - Context initialization failed org.springframework.beans.factory.BeanCre……
mybatis+springmvc 数据库带下划线的字段无法取到值
map映射文件 <mapper namespace=”spring4.mapper.CustomerAccountMapper” > <resultMap id=”BaseResultMap” type=”spring4.po.CustomerAccount” >……
为何本人用jetty+spring+mybatis+struts的框架搭的一个项目访问不了action
本人用的jetty7.6服务器,框架用的spring3+mybatis3+struts2,为何项目能正常启动,但是就是进不了action不管是form表单跳转,还是地址栏直接输入action都不行 下面贴下本人的文件内容: ================= web.xml ====================== <?xml version="1……