美文网首页
IDEA使用技巧

IDEA使用技巧

作者: 下雨之後 | 来源:发表于2021-02-17 12:03 被阅读0次
  • Could not autowire. No beans of 'xxxx' type found
    可以用以下几个方法解决
    1 修改idea
    Preferences | Editor | Inspections | Spring | Spring Core | Code | Autowiring for bean class
    Severity: ErrorSeverity: Warning
    2 使用@Resource替换@Autowired
    3 @Autowired(required = false)

  • 取消代码自动折叠
    Preferences | Editor | General | Code Folding
    取消勾选One-line methods

  • 忽略.idea隐藏文件
    Preferences | Editor | File Types
    Ignored Files and Folders添加*.idea

  • 配色
    Preferences | Editor | Color Scheme | Java
    将原始配色Darcula拷贝一份,执行duplicate...

scheme Foreground
Class 97C16D
Interface 97C16D
Static method 75C4AC
Method declaration 75C4AC
Method call 75C4AC
  • 提示忽略大小写
    Preferences | Editor | General | Code Completion
    去掉打勾Match case

相关文章

  • IntelliJ IDEA的使用技巧(一)

    IntelliJ IDEA的使用技巧 掌握了IntelliJ IDEA的一些技巧可以快速开发,极大的提高效率。 1...

  • Intellij IDEA 技巧

    IntelliJ IDEA Tips and Tricks 使用技巧 1.Autoscroll form Sour...

  • idea使用技巧

    转载:http://www.sohu.com/a/234213001_827544

  • IDEA使用技巧

    IDEA用的时间也比较长了,很多提高工作效率的小技巧一直没有注意,公众号推了不错的文章,觉得挺不错的,所以自己就转...

  • IDEA使用技巧

    ctrl+shift+A 打开查找快捷键窗口 ctrl+alt+[ 打开上一个窗口 ctrl+alt+] ...

  • IDEA使用技巧

    使用IDEA也有一段时间了,今天又看到了一个不错的IDEA视频,觉得对IDEA熟悉得更多了,在这里做下笔记,如下 ...

  • IDEA使用技巧

    1.IDEA安装目录 D:\Packages\DevelopTools\idea 2.调整字体 File -> S...

  • IDEA使用技巧

    IDEA使用技巧 我这里的快捷键方式是GNOME。 快捷键查询 菜单栏HELP----->keymap refer...

  • Idea 使用技巧

    IDEA避免JAVA文件自动引入import.*包 此处设置为500所表示的含义为:设置:当同时导入相同的包的 类...

  • IDEA使用技巧

    忽略.idea隐藏文件Preferences | Editor | File TypesIgnored Files...

网友评论

      本文标题:IDEA使用技巧

      本文链接:https://www.haomeiwen.com/subject/iieixltx.html