java开发常用工具DIY改造整理

2017-04-27  本文已影响49人  yoqu

全新系统搭建JAVA开发环境的自有套路整理,仅仅个人操作习惯整理而来,勿上纲上线

IDE 篇之 InteliJ IDEA DIY区

主要整理一些idea常用的自定义功能

安装Solarized主题


Live Template

经常使用的template:

private final static Logger logger = LoggerFactory.getLogger($CLASS$.class);
public static final int $NAME$ = $VALUE$
public static final String $NAME$ = "$VALUE$"

File and Code Template

/**
 * @author yoqu
 * @date ${YEAR}年${MONTH}月${DAY}
 * @time ${TIME}
 * @email wcjiang2@iflyte.com
 */

maven篇之使用国内的镜像仓库

  1. 打开maven项目的conf目录中的setting.xml文件,在第140多行出添加如下配置文件
  <mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
      <mirror>
          <id>nexus-aliyun</id>
          <mirrorOf>*</mirrorOf>
          <name>Nexus aliyun</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public</url>
      </mirror>
  </mirrors>

贴的代码中主要是中间的aliyun地址,其他的保持不变

gradle构建工具自定义

//todo

上一篇 下一篇

猜你喜欢

热点阅读