idea配置maven教程

1.官网下载maven到本地,我的安装目录为:D:\softManager\install\maven-3.5.4\apache-maven-3.5.4

2.在\apache-maven-3.5.4新建文件夹:local_resposity

3.在安装目录下的conf下打开setting.xml:设置如下:

idea配置maven教程_第1张图片

D:\softManager\install\maven-3.5.4\apache-maven-3.5.4\local_resposity设置maven下载jia包 的存放地址

idea配置maven教程_第2张图片


        nexus-aliyun
        central
        Nexus aliyun
        http://maven.aliyun.com/nexus/content/groups/public
   

将国外的maven下载源换位国内aliyun镜像源,速度快100倍 

3.idea中配置maven:

关闭项目,到开始页面,点击confiure,全局配置:

idea配置maven教程_第3张图片

idea配置maven教程_第4张图片 至此配置完毕。

修改

SprintbootApplication中的代码:
@SpringBootApplication
@RestController
public class SprintbootApplication {

    @RequestMapping("/helloboot")
    public String hello(){
        System.out.println("print hello to web page");
        return "hello spring boot";
    }
    public static void main(String[] args) {
        SpringApplication.run(SprintbootApplication.class, args);
    }
}

浏览器输入localhost:8080/helloboot可看到:

maven将jar包添加到本地仓库中

mvn install:install-file -DgroupId=javax.annotation -DartifactId=javax.annotation-api -Dversion=1.3.2 -Dpackaging=jar -Dfile=javax.annotation-api-1.3.2.jar

参考:

https://blog.csdn.net/qq_35462323/article/details/84863470

你可能感兴趣的:(编程工具的使用,java,web)