J2EE项目初始化内容
1. 编码配置
设置encoding为UTF-8
在setting中,搜索“encoding”,GBK全部改为UTF-8
2. JDK配置
设置项目的jdk版本,在open module settting中有配置项目
3. Maven配置
配置项目的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>C:\Users\itxiaohei\.m2\repository</localRepository>
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers