标签:mybatis
mybatis远程连接oracle数据库报错,连本地库没问题,pl/sql远程连数据库没问题
用pl/sql远程连服务器oracle数据库没问题,可以访问,用mybatis连本人本地的oracle数据库也可以连上,但是一用mybatis远程连接oracle数据库就报错了,有高手知道原因吗。服务名没错,用pl就可以连上 dataSource init error Caused by: oracle.net.ns.NetException: Listen……
SpringMVC中,为什么在Controller层中能够自动注入而在Service层中无法完成自动注入
这是本人的Spring-Mybatis配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta……
Spring声明式事务配置,在service执行查询后可以查询到数据,但在方法返回(return)时报错
使用spring 的aop配置事物,在执行查询的时候可以查询出结果,在service方法调用完成返回(return xxxx)时,出现错误, 框架采用的SpringMVC+mybatis,数据源是阿里的druid,详细的错误信息如下: [ERROR][2015-05-18 17:44:17,845][org.springframework.transacti……
spring-boot mybatis mapper生成sql有问题
datasource package com.grass.config; import com.alibaba.druid.pool.DruidDataSource; import com.github.pagehelper.PageHelper; import com.grass.common.interceptor.PerformanceIntercep……
springmvc 注解失败 No qualifying bean of type
这是代码Controller @Controller public class WeatherAction { @Autowired private WeatherService weatherService; @RequestMapping("/find") public @ResponseBody String find(……
SpringMvc+mybatis 无法注入service的bean
错误如下 Error creating bean with name “”userController””: Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.Be……
用log4j打印mybatis连接数据库SQL语句无法打印,用的是c3po连接池
log4j配置如下: log4j.rootLogger=info, stdout,file log4j.logger.org.springframework=INFO log4j.logger.org.springframework=ERROR log4j.appender.stdout=org.apache.log4j.ConsoleAppender l……