重装电脑的配置
程序员文章站
2024-03-21 14:45:16
...
重装电脑的配置-2018年6月28日21:13:03
- vpn
- chromn 使用方便
- 搜狗输入法 输入方便
- sublime 方便修改配置文件
- 解压
- 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 "[email protected]"
ssh-****** -t rsa -C "[email protected]"
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
}
}
}
后端偏前台
- idea
- atom
- sublime
- vscode
- navicat 安装与**
上一篇: 解决Mac下安装nmp的淘宝镜像失败
下一篇: 22. 括号生成