摘要: 1.redis配置文件 spring: redis: database: 0 host: 127.0.0.1 port: 6379 password: test jedis: pool: min-idle: 0 max-active: 8 max-idle: 8 max-wait: -1ms con 阅读全文
posted @ 2022-05-30 14:31 liftsail 阅读(747) 评论(0) 推荐(0) 编辑
摘要: URL不区分大小写 spring mvc对于请求URL默认是区分大小写的。 如定义一个controller,其请求path为/welcome。 @Controller public class HomeController { @RequestMapping(value = "/welcome", 阅读全文
posted @ 2022-05-30 13:19 liftsail 阅读(1016) 评论(0) 推荐(1) 编辑