下载

https://www.eclipse.org/downloads/packages/

自动保存代码

编码设置

代码自动提示

.abcdefghijklmnopqrstuvwxyz

字体大小设置

配置 Maven

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:/repository</localRepository> <pluginGroups>
</pluginGroups> <proxies>
</proxies> <servers>
</servers> <mirrors>
<mirror>
<id>central</id>
<mirrorOf>central</mirrorOf>
<name>aliyunmaven</name>
<url>https://maven.aliyun.com/repository/central</url>
</mirror>
<mirror>
<id>apache.snapshots.https</id>
<mirrorOf>apache.snapshots.https</mirrorOf>
<name>aliyunmaven</name>
<url>https://maven.aliyun.com/repository/apache-snapshots</url>
</mirror>
</mirrors> <profiles>
<profile>
<id>jdk-1.8</id>
<activation>
<jdk>1.8</jdk>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
</settings>

最新文章

  1. ORA-01078: failure in processing system parameters &amp; LRM-00109: could not open parameter file
  2. Java 基础 Map 练习题
  3. webpy使用笔记(一)
  4. DOTween文档
  5. YTU 2924: 文件操作--二进制文件读入
  6. 【转】常用插件和mvn test命令
  7. Bugzilla使用手册及解决方案
  8. Linux iptables简单配置
  9. 给图片使用border-radius 图片会变成圆的。
  10. vue表单详解——小白速会
  11. RabbitMQ消息队列
  12. Python系列:三、流程控制循环语句--技术流ken
  13. VMware5.5-添加数据中心,集群及主机
  14. c++ __declspec
  15. GoldenGate for Java adapter介绍二(代码篇)
  16. ( 转)Ubuntu下创建、重命名、删除文件及文件夹,强制清空回收站方法
  17. Java中 break continue return 的区别
  18. 20165236实验一 Java开发环境的熟悉
  19. What’s WOYO PDR-007 Paintless Dent Repair Heat Induction?
  20. nginx反向代理设置自定义错误页面

热门文章

  1. 为SourceInsight添加多行注释功能菜单
  2. java apache-commons-collections中Map辅助类的使用
  3. 记一次生产环境presto删表失败的问题
  4. traceback:让你更加灵活地处理python的异常
  5. CUDA warning C4819的消除
  6. 微擎后台进行GET提交
  7. 【每日一包0003】kind-of
  8. idea中使用JRebel插件
  9. 【LuoguP4887】第十四分块(前体)
  10. iOS设置UITableViewCell的选中时的颜色