idea配置
Java之路-day1JavaWeb开发前期准备idea安装maven建仓+国内镜像tomcat配置idea通用设置JDK配置编码格式设计默认浏览器关联Tomcat关联MavenJavaWeb开发前期准备idea安装云盘idea-19.3链接:https://pan.baidu.com/s/1p0NAuidjTQUHWE6buUXoUg提取码:qwer附上白嫖自取时间到2089年链接:https:
JavaWeb开发前期准备
idea安装
云盘idea-19.3
链接:https://pan.baidu.com/s/1p0NAuidjTQUHWE6buUXoUg
提取码:qwer
附上白嫖自取 时间到2089年
链接:https://pan.baidu.com/s/1S-6x11YjuZNrWl0_VpbNig
提取码:qwey
maven建仓+国内镜像
链接:https://pan.baidu.com/s/14ETydBsk0rQr-p2O6J2N6w
提取码:qweo
maven解压后默认仓库在c盘user/freedom/.m2/repository
settings.xml没有可以去maven里面conf中复制
将repository文件移动到重建的本地文件下
修改setting.xml中的完成如下
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>default</id>
<repositories>
<repository>
<id>nexus</id>
<name>local private nexus</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>nexus</id>
<name>local private nexus</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<localRepository>D:\network\maven\maven_jar\repository</localRepository>
</settings>
提高下载速度进行修改镜像同样在setting.xml中
阿里镜像
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
tomcat配置
链接:https://pan.baidu.com/s/1QCUEymjTzLtRS7reU4_oyg
提取码:qwep
idea通用设置
JDK配置
选择需要的版本
编码格式设计
flie->settings里面设置编码为utf-8
file encoding
flie->other settings->setting for New Projects里面设置编码为utf-8
encoding
默认浏览器
file->setting
browsers
关联Tomcat
Run->Edit Configurations
在页面的+号下选中Tomcat Server 下的Local
右边配置选择Tomcat的本地位置
关联Maven
file->settings->Maven
Maven home directory为本地maven包
Local repository如果有重建仓库指向重建仓
更多推荐
所有评论(0)