入门学习自: http://www.ityouknow.com/springboot/2016/01/06/springboot(%E4%B8%80)-%E5%85%A5%E9%97%A8%E7%AF%87.html
踩坑
- 照着链接里的入门教程第一篇单元测试那里就出bug了,
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
,百度了才知道,原来是我main和test分支的包名不一样导致的。
我将spring boot的main分支下的默认包名改成了com.lizz,而test分支下的包名也需要相应改变。