ide

POM报错Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from

匆匆过客 提交于 2020-02-23 13:41:06
解决方式一: 1、查看.m2\repository\org\apache\maven\plugins\maven-resources-plugin\下maven-resources-plugin-2.6.jar文件是否存在,用rar打开是否正常的,如果都正常,则说明jar包没有问题 2、重新执行一遍maven install 即可 解决方式二: 在用 Eclipse IDE for Java EE Developers 进行 maven 项目的开发时,报错Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of;解决方法: 1、查看windows -> Preferences -> maven 的settings.xml文件中.m2的位置 2、然后将.m2/repository/org/apache/maven/plugins目录下的文件夹全部删除 3、选中maven项目,右键--》maven--》update让maven重新下载依赖包 问题解决 【注】此IDE自带maven插件,不需要再自己下载安装maven插件 来源: https://www.cnblogs.com/endtel/p/7577532.html

CLion uses system memory excessively

大兔子大兔子 提交于 2020-02-23 09:17:19
问题 I recently started to use CLion, on Windows 7 64-bit, for editing C files. One thing that bothers me a lot is that it uses too much system memory. It doesn't cause out of memory error as asked in another question. Actually CLion shows much lesser memory consumption in IDE (~500 mb out of ~2000 mb) than it takes from system (~1000 mb). You can see a snapshot of the system memory usage and CLion's memory display below: I use CLion not for C++ but for C projects. My project isn't that big (~5 c

[转帖]SATA工作模式咋选?揭秘AHCI和IDE区别(全文)

爷,独闯天下 提交于 2020-02-21 08:10:24
第1页:AHCI模式与Win7、SSD的不解之缘 https://www.cnblogs.com/zjoch/p/4891647.html AHCI这个注定和SATA接口结下不解之缘的接口模式,它担负着淘汰IDE模式的重任,从诞生开始就充满争议,它经历了整整7年时间。它伴随着SSD固态硬盘兴旺走向主流,同时也和微软WinXP、Win7操作系统密不可分。本文,我们将为你揭开AHCI和IDE的前世今生,分析它们之间的区别,帮助读者选择合适的硬盘工作模式。 SATA工作模式怎么选?揭秘AHCI和IDE区别 硬盘工作模式经历IDE和AHCI两个阶段,我们可以用螺旋桨式(IDE)、喷气式飞机(AHCI)来形容它们。单从字面理解,我们可以知道螺旋桨式飞机的速度不如喷气式飞机。 ●硬盘工作模式与操作系统的关系 在WinXP时代,系统对AHCI模式支持不佳,选择AHCI模式装系统需要用软驱安装驱动等。因此IDE模式在Windows XP时代一度盛行,并随着SATAII接口达到顶峰。而到了Win7时代,AHCI驱动集成于操作系统,完全没繁琐步骤,从而拉开AHCI的普及之路。 注:时至今日,机械硬盘的最大读写速度仍未超过SATAII接口的极限。 ●SSD固态硬盘助推AHCI成为主流 AHCI和IDE模式的另一个分水岭则是在SSD固态硬盘的兴起。早期的机械硬盘在AHCI和IDE模式下的速度差距较小

253_S32DS编译找不到已经添加的文件解决

血红的双手。 提交于 2020-02-16 23:43:36
完整的S32K144的学习汇总如下: https://github.com/GreyZhang/g_s32k144 继续学习S32K144,这次学习总结主要是针对学习过程中出现的一个问题。这个问题我自己最初解决的时候觉得很容易,毕竟之前连make这样的工具都是熟悉的,我大概熟悉这个IDE的工作机制。但是,我也遇到过很多人遇到这样的问题不会解决,那么在这里整理一下解决方案。 我遇到了一个如下的问题: IDE提示我没有相应的文件或者目录,但是我们看看我现在手头的工程: 其实,这个文件是存在的。那么,为什么还会报错呢?其实,这就是因为有一个查询目录信息设置的不对。编译器根据makefile的信息找不到相应的文件,makefile应该把相应的信息增加进去。但是,我们现在用的是S32DS的IDE,这个信息怎么添加呢?我们没有自己手写makefile。其实,在IDE的配置中存在这样的配置。 在工程的属性中,找到相应的配置。最右边的这个方框其实就是我们所说的搜索目录了。怎么把我们现在新增加的目录信息加进去呢?点击右边的Add... 最后这几个勾不一定需要勾,但是勾选了之后会少很多麻烦。接下来,确认完成配置。 重新进行一次编译,上次出现的问题解决掉了。 完整的S32K144的学习汇总如下: https://github.com/GreyZhang/g_s32k144 来源: CSDN 作者:

java 工具的开发及应用

我怕爱的太早我们不能终老 提交于 2020-02-16 22:53:37
在真实开发中如果使用文本编辑工具进行开发,基本上是不可能的,原因是开发效率太低如何提高开发效率? 使用IDE,集成开发环境使用IDE工具常见的工具有Eclipse、IDEA、STS/MyEclipseEclipse中的开发步骤:1、File—new --java project构建java项目 2、src目录用于存放源代码 3、右键点击src–new—class 4、IDE工具会根据向导中的设置自动生成对应的class代码结构 5、在IDE工具中输入java代码,从而进行编程 6、输入完毕按【ctrl+s】进行保存,保存时IDE工具会自动进行编译形成.class字节码文件 7、在含有main方法的类上右键–run—java Application,则自动会执行java程序,执行结构会显示在Console视图窗口中首先将源代码编译成二进制字节码(bytecode 不是机器语言),然后依赖各种不同平台上的虚拟机来解释执行字节码。从而实现了“一次编译、到处执行”的跨平台特性。不过,每次的执行编译后的字节码需要消耗一定的时间,这同时也在一定程度上降低了Java程序的性能Java主要技术分支 JavaSE:Java标准版,适合于开发桌面系统和低端商务应用系统 前身J2SE,2005年之后更名JavaSE Java 语言核心类: 数据库连接, 接口定义,输入/输出和网络编程 JavaEE

lombok学习一:通过lombok解决idea mapper报错问题

与世无争的帅哥 提交于 2020-02-16 13:51:54
首先lombok是一款大幅度减少代码的插件 学习文档地址如下 https://www.projectlombok.org/features val val example = new ArrayList<String> () ; example.add ( "Hello, World!" ) ; val foo = example.get ( 0 ) ; 与java如下代码相等 final ArrayList<String> example = new ArrayList<String> () ; example.add ( "Hello, World!" ) ; final String foo = example.get ( 0 ) ; var var example = new ArrayList<String> () ; example.add ("Hello, World!" ) ; val foo = example.get (0 ) ; 与java如下代码相等 ArrayList<String> example = new ArrayList<String> () ; example.add ("Hello, World!" ) ; String foo = example.get (0 ) ; @NotNull用来判断参数不为空并且抛出异常 import

用Gvim建立IDE编程环境 (Windows篇)

浪子不回头ぞ 提交于 2020-02-16 09:04:12
转自: http://my.oschina.net/kontor/blog/50717 0.准备软件及插件。 (a)gvim72.exe 地址ftp://ftp.vim.org/pub/vim/pc/gvim72.exe。 (b)vimcdoc-1.7.0-setup.exe 地址http://prdownloads.sourceforge.net/vimcdoc/vimcdoc-1.7.0-setup.exe?download (c)ec57w32.zip 地址http://prdownloads.sourceforge.net/ctags/ec57w32.zip (d)taglist_45.zip 地址http://www.vim.org/scripts/download_script.php?src_id=7701 (e)winmanager.zip 地址http://www.vim.org/scripts/download_script.php?src_id=754 (f)minibufexpl.vim 地址http://www.vim.org/scripts/download_script.php?src_id=3640 (g)a.vim 地址http://www.vim.org/scripts/download_script.php?src_id=7218 (h

Can Not Perform Copy-Paste in Android Studio

若如初见. 提交于 2020-02-13 09:48:47
问题 I have faced two main problems in Android Studio. First of all I can not perform copy-paste and cut-paste ( ctrl + c - ctrl + v - ctrl + x ) abilities in some classes. To fix that problem, I click "invalide caches/restarts", but it breaks down again immediately. Second problem is (I think it is related to the first problem) compiler does not recognize already defined methods and attributes. Auto suggestion etc. does not work. The steps I've taken to try to fix the problem are; File ->

Can Not Perform Copy-Paste in Android Studio

落爺英雄遲暮 提交于 2020-02-13 09:46:48
问题 I have faced two main problems in Android Studio. First of all I can not perform copy-paste and cut-paste ( ctrl + c - ctrl + v - ctrl + x ) abilities in some classes. To fix that problem, I click "invalide caches/restarts", but it breaks down again immediately. Second problem is (I think it is related to the first problem) compiler does not recognize already defined methods and attributes. Auto suggestion etc. does not work. The steps I've taken to try to fix the problem are; File ->