启动报错Failed to auto-configure a DataSource的问题解决
原因:dependency中加入mybatis-spring-boot-starter却未链接数据库
解决办法两种:
1.将这个依赖注释<!--<dependency> ....</dependency>-->
2.启动类上修改@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
或@SpringBootApplication(exclude={DataSourceAutoConfiguration.class})
原因:dependency中加入mybatis-spring-boot-starter却未链接数据库
解决办法两种:
1.将这个依赖注释<!--<dependency> ....</dependency>-->
2.启动类上修改@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
或@SpringBootApplication(exclude={DataSourceAutoConfiguration.class})
2018-05-10
老师,我的老师报错,测试类里面报错:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.demo.dao.AreaDao.queryArea
可是该配的都配了,已经找了很久的毛病了,还是找不到
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.demo.dao.AreaDao.queryArea
可是该配的都配了,已经找了很久的毛病了,还是找不到
2018-05-10
视频好像少了一段啊,我根据老师的代码自己尝试理解写了一个,欢迎大家关注我的github:
https://github.com/bjchen2/WxProgram
下面是老师的源码
https://gitee.com/xiangze/areadisplay/blob/master/pages/operation/operation.wxml#
https://github.com/bjchen2/WxProgram
下面是老师的源码
https://gitee.com/xiangze/areadisplay/blob/master/pages/operation/operation.wxml#
2018-05-04
基于自己理解在老师的代码上进行了修改,尽可能的使用springboot特性,简化代码(如:除去datasource和sessionFactory类、mybatis.xml的构造,直接在SpringBoot中配置;修改controller访问地址和访问方式,尽可能符合restful规范):
有兴趣的可以关注我的GitHub:https://github.com/bjchen2/WxProgram
有兴趣的可以关注我的GitHub:https://github.com/bjchen2/WxProgram
2018-05-03
基于自己理解在老师的代码上进行了修改,尽可能的使用springboot特性,简化代码(如:除去datasource和sessionFactory类、mybatis.xml的构造,直接在SpringBoot中配置;修改controller访问地址和访问方式,尽可能符合restful规范):
有兴趣的可以关注我的GitHub:https://github.com/bjchen2/WxProgram
有兴趣的可以关注我的GitHub:https://github.com/bjchen2/WxProgram
2018-05-03
基于自己理解在老师的代码上进行了修改,尽可能的使用springboot特性,简化代码(如:除去datasource和sessionFactory类、mybatis.xml的构造,直接在SpringBoot中配置;修改controller访问地址和访问方式,尽可能符合restful规范):
有兴趣的可以关注我的GitHub:https://github.com/bjchen2/WxProgram
有兴趣的可以关注我的GitHub:https://github.com/bjchen2/WxProgram
2018-05-03