最赞回答 / AlwaysYang
应该是没下载全,第一次需要maven下载到所有的jar包的。idea会比较慢,试试把.m2/setting下面的镜像改成阿里云的,下载起来很快。
2016-12-20
已采纳回答 / battier_imooc
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.2.RELEASE</version> </parent> <dependencies> <dependency> <groupI...
2016-12-20
讲师回答 / 廖师兄
推荐不使用视图, 使用Rest Api风格, 采取前后端分离的模式如果非要使用, 建议使用课程中Controller的使用中提到的Thymeleaf,这是spring官方推荐的最不推荐jsp, 古董级别的东西,早过时了
2016-12-19
最赞回答 / 庄学爸
没法创建helloController,属性依赖注入失败.检查一下helloController中是否使用了@Controller或@RestController注解.检查接收配置文件的属性上是否使用了@Value注解,该注解用于为属性赋值.
2016-12-17