重装电脑的配置

3 篇文章 0 订阅
2 篇文章 0 订阅

重装电脑的配置-2018年6月28日21:13:03

  1. vpn
  2. chromn 使用方便
  3. 搜狗输入法 输入方便
  4. sublime 方便修改配置文件
  5. 解压
  6. git git bash

开发相关

后端偏后台的

1. jdk 某些软件基础要求

这次装的10 .exe直接安装不用配环境变量 但是他自己配的只是1-用户变量 2-jre
环境变量配置:path里加上 俩个 1. \bin 2. \jre\bin
据说还要配classpath 这里没配好像无影响?

2. git 方便命令行操作
这俩几乎没作用,看着好看而已
git config --global user.name "okletusgo"

git config --global user.email "tangzekk@gmail.com"

ssh-keygen -t rsa -C "tangzekk@gmail.com"

3. maven

依赖于jdk环境? 先装jdk

配置:
1. setting.xml 文件,新增一行:<localRepository>这里是更改之后的路径</localRepository>
2. 把修改后的setting.xml文件复制一份到repository文件下,以前的不要删除。然后执行mvn help:system
3. 阿里云 里加

<mirror>  
  <id>alimaven</id>  
  <name>aliyun maven</name>  
  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>;  
  <mirrorOf>central</mirrorOf>          
</mirror>

4.查看修改结果??mvn help:effective-settings

4. gradle
5. tomcat todo

环境变量:GRADLE_HOME:D:\dev\gradle-3.5
Path 添加: %GRADLE_HOME%\bin;
全局切换到阿里仓库: `C:\Users\zekk\.gradle 新建init.gradle
插入:

allprojects{
    repositories {
        def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
        all { ArtifactRepository repo ->
            if(repo instanceof MavenArtifactRepository){
                def url = repo.url.toString()
                if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
                    project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."
                    remove repo
                }
            }
        }
        maven {
            url REPOSITORY_URL
        }
    }
}

后端偏前台

  1. idea
  2. atom
  3. sublime
  4. vscode
  5. navicat 安装与破解
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值