启动报错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
最新回答 / Wong_Sir
你这是数据库拒绝访问 , 你先看下你数据库的用户名密码配置的是否正确 , 这套教程我还没看 , 不过个人经验觉得 , 可能库名或用户名密码错误 .
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
已采纳回答 / 翔仔
同学好,感觉还是你们的配置,可能是maven也可能是别的有问题,可以对比下源码和视频重新配置一下微信小程序后台: https://gitee.com/xiangze/demo
2018-05-06
视频好像少了一段啊,我根据老师的代码自己尝试理解写了一个,欢迎大家关注我的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