spring 學習系列 --- 配置學習
阿新 • • 發佈:2019-01-03
1、maven repository mvn倉庫
管理各種依賴關係,例如,
<!-- https://mvnrepository.com/artifact/aspectj/aspectjrt -->
<dependency>
<groupId>aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.5.4</version>
</dependency>
每個包的 groupId 、artifactId 以及 version 用來區分每個包的,它們都是唯一的。
其中還會有scope之類的,一些其他的設定引數
2、IDEA 新增開源的jar
在IntelliJ IDEA 中選擇File->Project Structure->Modules->Dependencies 右邊有個綠色的小加號,選擇JARs or directories選擇你要新增的外部jar包。一定要直接把jar的位置新增進去,然後才可以使用 import org.springframe...之類的方式匯入進去。
3、IDEA 新增.xml 檔案
4、java相關的學習資料
mysql documentation https://dev.mysql.com/doc/refman/5.7/en/resetting-permissions.html
spring docmentation https://docs.spring.io/spring/docs/current/spring-framework-reference/
spring MVC documentation