SpringBoot-Learning icon indicating copy to clipboard operation
SpringBoot-Learning copied to clipboard

《Spring Boot基础教程》,2.x版本持续连载中!点击下方链接直达教程目录!

Results 70 SpringBoot-Learning issues
Sort by recently updated
recently updated
newest added
trafficstars

Project build error: 'packaging' with value 'jar' is invalid. Aggregator projects require 'pom' as packaging.

第一个项目helloworld都起不来, 初学者! Field error in object 'server' on field 'port': rejected value [8080;]; codes [typeMismatch.server.port,typeMismatch.port,typeMismatch.java.lang.Integer,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [server.port,port]; arguments []; default message [port]]; default message [Failed to convert property...

此章节在内存中存储密码的代码中,会报出There is no PasswordEncoder mapped for the id “null”的错误。需要增加密码的加密形式

3-2-6 seems not all the code included, the test case could not be run successfully, please update

### redis连接根本就没用application.properties中的吖 ```java JedisConnectionFactory jedisConnectionFactory() { return new JedisConnectionFactory(); } ``` ```java public JedisConnectionFactory() { this.hostName = "localhost"; this.port = 6379; this.timeout = 2000; this.usePool = true; this.poolConfig = new...