eclipse
dawn_02
这个作者很懒,什么都没留下…
展开
-
eclipse :internal error occurred during: "Initializing Java Tooling". java.lang.NullPointerException
打开eclipse直接报错:An internal error occurred during: "Initializing Java Tooling".java.lang.NullPointerException解决方法:点击菜单栏:window -> perspective -> reset perspentive重启eclipse即可...原创 2019-10-23 08:35:18 · 140 阅读 · 0 评论 -
Ubuntu简单快速安装svn
ubuntu快速下载svn下面是下载步骤:1.打开ubuntu的软件中心2.输入:RapidSVN3.直接下载4.找到:文档库(R)——>签出5.输入地址和存放地址:注意最好自己新建一个文件夹6.等待即可svn出文件...原创 2018-03-20 16:25:41 · 268 阅读 · 0 评论 -
eclipse创建Maven项目报错Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp
错误描述:创建maven项目时报错:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:1.0 from any of the configured repositories.Could not write artifact lastUpdated status/home/zheng/.m2/...原创 2018-03-21 14:35:35 · 17649 阅读 · 0 评论 -
ubuntu16.04使用命令启动tomcat
1.先到tomcat的bin目录下启动终端2.使用命令: ./startup.sh3.启动完成会显示:Tomcat started 就可以4.关闭tomcat5.同样到bin目录下,使用命令:./shutdown.sh 6.关闭完成;...原创 2018-03-28 17:07:33 · 6880 阅读 · 0 评论 -
eclipse快速创建web项目
1.点击左上角的file->new->Other2.输入:dy后会跳出 Dynamic Web Project3.点击:Dynamic Web Project->next4.输入项目名称:newWeb5.点击 next->next6.在Generate web.xml deploument descriptor 前面选择打钩7.点击 Finish8.项目创建完成9.打开项目...原创 2018-04-11 10:17:16 · 251 阅读 · 0 评论 -
eclipse 不能使用Ctrl+Y快捷键
刚使用eclipse 知道Ctrl+Z是后退键,我们想使用Ctrl+Y作为前进键确实失败的。原来eclipse默认的是使用Ctrl+Shift+Z做的是前进键。修改成Ctrl+Y 的方法:Window-->preferences-->General-->Keys-->搜索 redo 将Binding 修改成 Ctrl+Y 即可!...转载 2018-04-04 08:51:54 · 3540 阅读 · 1 评论 -
Ubuntu安装eclipse出现 JVM terminated. Exit code=1
1.配置好了jdk1.72.打开终端输入 java -version 显示的也是 jdk1.73.下载好最新的eclipse4.打开eclipse 显示这样的错误解决办法一:下载jdk1.8 重新配置。然后重新启动电脑 打开eclipse即可解决方法二:将你的eclipse删除。到 : https://www.eclipse.org/downloads/eclipse-packages/ ...原创 2018-04-13 14:30:41 · 2189 阅读 · 0 评论 -
Ubuntu16.04 eclipse 安装testng
方法一.在线安装方法:a.help--->Install New Software , 然后Add b.Name填写: testNgc.Location填写:http://beust.com/eclipse如图:d.点击选择testng-->nexte.继续选择next,然后:选择我接受许可协议中的条款(A)如图f.点击完成,等待下载完成重启ec...原创 2018-09-20 11:36:42 · 280 阅读 · 0 评论 -
错误: 在类中找不到 main 方法, 请将 main 方法定义为:public static void main(String[] args)否则 JavaFX 应用程序类必须扩展javafx
最近使用eclipse时好几次运行main方法出现报错错误: 在类 Main 中找不到 main 方法, 请将 main 方法定义为: public static void main(String[] args) 否则 JavaFX 应用程序类必须扩展javafx.application.Application1.确认我这个main方法没有错误格式为public static void...原创 2019-09-10 09:32:51 · 8233 阅读 · 4 评论