开发错误
Soar Tu
这个作者很懒,什么都没留下…
展开
-
注解错误:Error resolving template "xxx", template might not exist or might not be accessible b
Error resolving template "xxx", template might not exist or might not be accessible by any of the configured Template Resolvers在controller上加注解@Controller 和@RestController都可以在前端调通接口,但是二者的区别在于,当用前者的时候在方...转载 2018-07-10 17:45:46 · 10893 阅读 · 0 评论 -
spring boot 整合 swagger2 遇到的坑!!!
整合步骤:1.加入相关依赖2.添加 SwaggerConfig配置类访问http://localhost:8088/v2/api-docs可以正常访问,但是访问http://localhost:8088/swagger-ui.html报错404这是因为访问不到静态资源,需要添加。这里网上教程很多,不提。我的错误:添加了这些配置仍然访问不到,显然不是网上教程的问题,最后有一个博客...原创 2018-09-03 17:50:53 · 1785 阅读 · 0 评论 -
springboot中delete请求方式的实现
前端 $.ajax({ type: 'DELETE', url: '/user/'+userId, ... })后端 @DeleteMapping("{userId}") public ResponseEntity<Void> deleteUser( @PathVariable Str原创 2018-10-13 17:29:49 · 7297 阅读 · 1 评论 -
内存溢出和内存泄漏的区别和如何避免内存溢出
内存溢出 out of memory是指程序在申请内存时,没有足够的内存空间供其使用,出现out of memory;比如申请了一个integer,但给它存了long才能存下的数,那就是内存溢出。内存泄露 memory leak是指程序在申请内存后,无法释放已申请的内存空间,一次内存泄露危害可以忽略,但内存泄露堆积后果很严重,无论多少内存,迟早会被占光。memory leak会最终会导致o...转载 2018-10-14 15:33:58 · 387 阅读 · 0 评论 -
集合遍历时注意事项(面试题)
增强for循环Iterator迭代器他们在便利集合时,如果对集合元素进行(增/删),会报错:ConcurrentModificationException但是迭代器自身可以进行remove:List<String> list = new ArrayList<>(); int i = 0; while (i<20){ ...原创 2018-10-08 21:15:40 · 669 阅读 · 0 评论