1、http://localhost:8080/hello 请求无响应
Whitelabel Error Page
This application has noexplicit mapping for /error, so you are seeing this as a fallback.
Mon Nov 13 17:23:57 CST 2017
There was an unexpected error(type=Not Found, status=404).
No message available
问题很像是没有访问地址不对,第一感觉以为url写的不对。
其实不是,真正的原因是【Application启动类放的位置不对】要将Application放在最外层,也就是要包含所有子包。
比如你的groupId是com.example,子包就是所谓的com.example.xxx,所以要将Application类要放在com.example包下。
springboot会自动加载启动类所在包下及其子包下的所有组件.
2、Redis配置无法生效,数据库连接不上
Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Unsupported CONFIG parameter: notify-keyspace-events
安装 redis 的版本是2.8 项目引入的 spring-boot-starter-redis 包版本是 1.3.5
可以进入 maven 官网查看版本号 ,搜索 spring-boot-starter-redis ,发现 spring-boot-starter-redis1.3.5的只支持2.7的redis
maven搜索官网 http://mvnrepository.com/
解决方法:
卸载redis2.8 ,安装2.7即可,安装redis时根据项目引入的jar包版本对应安装
3、使用Eclipse调试Spring boot项目时总是直接进入SilentExitExceptionHandler
解决方案:Window-->Preference-->java-->debug-->Suspend execution on uncaught exceptions选项前面的勾去掉
再次进行Debug测试时,发现可以了。