工作、学习中遇到的bug-New

1.No converter found for return value of type: class com.wen.mall.tiny.common.api.CommonResult

在测试mall-tiny-01的数据查询时,报错,原因CommonResult的属性没有setter、getter方法
https://www.jianshu.com/p/e5d8ba73b13b

2.Consider defining a bean of type 'XXX.Dao' in your configuration

Mybatis的配置文件中应该添加自定义的xml文件扫描路径

@MapperScan({"com.wen.mall.tiny.mbg.mapper","com.wen.mall.tiny.dao"})

3.Invalid bound statement (not found)
配置文件出错,classpath后没有空格

mybatis:
  mapper-locations:
    - classpath:mapper/*.xml
    - claaspath*:com/**/mapper/*.xml

4.Non-managed pom.xml file found

https://jingyan.baidu.com/art...
5.远程拉取gitlab代码提示early EOF The remote end hung up unexpectedly index-pack failed RPC failed; curl 18 transfer closed
重新拉取即可,下面网址并未参考
https://blog.csdn.net/u011250...
6.idea从gitlab拉取代码
https://blog.csdn.net/wudinan...
7.java.rmi.server.ExportException: Port already in use: 1099;
修改JMX端口即可
8.mybatis plus 使用
https://baomidou.com/
https://www.csdn.net/gather_2...
9.Error:java: Compilation failed: internal java compiler error
https://blog.csdn.net/wo54107...
10.Assert.notNull
https://www.cnblogs.com/mingf...
11.测试父类子类有同名方法时如何调用
https://blog.csdn.net/qq_2180...
github.work_demo
12.rocketmq报错service not available now, maybe disk full
https://blog.csdn.net/weixin_...
https://jingyan.baidu.com/art...
13.Lambda expressions are not supported at language level '1.5'
https://blog.csdn.net/xilin66...
14.IDEA热部署
https://blog.csdn.net/qq_1614...
15.Handler processing failed; nested exception is java.lang.NoSuchMethodError
https://blog.csdn.net/hello_w...
16.java Timer
https://blog.csdn.net/qq_3949...
17.try加()什么意思
https://blog.csdn.net/llkoio/...
18.CopyOnWriteArraySet
https://www.cnblogs.com/xiaol...
19.redis数据结构
https://www.cnblogs.com/haopr...
20.jedis
https://www.cnblogs.com/tengf...
21.utils层与tools层,manager层与service层,helper层概念理解https://blog.csdn.net/cchchun...
22.xxl-job
https://blog.csdn.net/qq92486...
https://www.xuxueli.com/xxl-j...

  1. @Generated

https://wenda.game234.com/q/4...
24.拦截器~~~~
实现拦截器的几种方式,webConfig
25.response.sendRedirect
https://blog.csdn.net/qq_3723...
26.x-requested-with
https://www.baidu.com/s?ie=UT...
27.WebMvcConfigurer、WebMvcConfigurerAdapter
https://blog.csdn.net/zhangpo...
28.No active profile set, falling back to default profiles: default
https://www.cnblogs.com/jpfss...
29.Disconnected from the target VM, address
https://www.cnblogs.com/javaw...
30.Process finished with exit code 0
https://blog.csdn.net/doudou1...
31.方法引用
https://www.cnblogs.com/wuhen...
32.Set转List~~~~
https://blog.csdn.net/kye0559...
33.Function.identity()
https://www.jianshu.com/p/cd6...
34.序列化
https://blog.csdn.net/tree_if...

你可能感兴趣的:(java)