报错org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tomcatEmbeddedServletContainerFactory' defined in class path resource [org/springframework/boot/
2017-09-18
Destroy method on bean with name 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' threw an exception
2017-09-18
最新回答 / 木尘子
第一个规定就是这样,我们按照规定来就可以了。第二个Required String parameter 'name' is not present。应该是你传入参数是没传入“name”属性,而后台代码你直接写的@RequestParam("name"),这样写是有问题的,因为@RequestParam注解默认required = true,而你没传当然报错了。可以加上required = false,这时代码逻辑可以需要调整一下,因为不传name时后台获取的name可能null。
2017-09-17
最赞回答 / wow08
将application.yml中的数据库连配置改成这样:url: jdbc:mysql://127.0.0.1:3306/girls?characterEncoding=utf8乱码的解决关键就是这个characterEncoding=utf8
2017-09-16
最赞回答 / 慕码人3035288
<dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.3.175</version> </dependency>
2017-09-16