springboot-guide icon indicating copy to clipboard operation
springboot-guide copied to clipboard

SpringBoot2.0+从入门到实战!

Results 16 springboot-guide issues
Sort by recently updated
recently updated
newest added

The type HandlerInterceptorAdapter is deprecated 可以写一个新的 org.springframework.web.servlet.HandlerInterceptor 更好一点。

Spring Boot 异常处理的几种方式中的第三点,介绍@ResponseStatus使用时代码中的public类与包名不对应

Spring Boot JPA 基础:常见操作解析 部分的测试代码中,@Before注解没有给value属性赋值,没有指定切点表达式

init.sql 中的双引号要改成单引号,否则无法运行测试用例。具体可参考:[](https://stackoverflow.com/questions/35646432/org-h2-jdbc-jdbcsqlexception-column-salman-not-found/35646785)

将 `jpa-demo` 中初始化 `sql` 中属性字符串双引号改成了单引号。双引号在运行后,会提示`can not find column xxx(eg: person1)`

![企业微信截图_16268603115766](https://user-images.githubusercontent.com/4637100/126469282-845cf7f1-f342-4bd1-b04d-0f2c6a20f1d3.png) ![企业微信截图_1626860326678](https://user-images.githubusercontent.com/4637100/126469306-5d813208-c285-42aa-aacc-66e01f75b9bf.png) ![企业微信截图_16268603424791](https://user-images.githubusercontent.com/4637100/126469322-8c31de4d-5e88-453f-b6c3-7c436b52dc25.png) ![企业微信截图_1626860418622](https://user-images.githubusercontent.com/4637100/126469344-ae0b12ec-07f8-49a4-bf55-a1b75aa6bf46.png)

https://snailclimb.gitee.io/springboot-guide/#/./docs/advanced/springboot-async Queue Capacity : 当新任务来的时候会先判断当前运行的线程数量是否达到核心线程数,如果达到的话,信任就会被存放在队列中。 “信任” 应该是 “新任务”吧?

《RESTful Web 服务介绍》中的helloworld项目404了