【操作宝典】IntelliJ IDEA新建maven项目详细教程

目录

1. 配置maven环境

2. 创建maven项目

3. 创建maven项目完整示例

a. 导入spring boot环境

b. 修改maven配置

c. 下载jar包

d. 创建Java类


1. 配置maven环境

【安装指南】maven下载、安装与配置详细教程-CSDN博客

2. 创建maven项目

新建--项目

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第1张图片

选择maven

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第2张图片

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第3张图片


3. 创建maven项目完整示例

案例:使用maven新建spring boot项目并输出hello world

a. 导入spring boot环境

pom.xml初始内容:

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第4张图片

加入

    
        org.springframework.boot
        spring-boot-starter-parent
        2.7.1
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
    

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第5张图片

b. 修改maven配置

项目--设置--搜索maven

修改内容【主目录+setting.xml+仓库】为自己下载maven安装位置,不使用他给了默认,点击应用--确定

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第6张图片

c. 下载jar包

点击右侧maven的刷新,安装jar包

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第7张图片

资源获取:关注文末公众号回复  maven01


d. 创建Java类

1. 在下图目录新建java类:比如com.zhao.App

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第8张图片

输入java代码如下:

package com.zhao;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class App {
    public static void main(String [] args){
        SpringApplication.run(App.class,args);
    }
}

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第9张图片

2. 在下图目录新建java类:比如Controller.HelloWorldController.java

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第10张图片

编程Java代码如下:

package com.zhao.Controller;

import  org.springframework.web.bind.annotation.RequestMapping;
import  org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloWorldController {
    @RequestMapping("/hello")
    public String hello(){
        return "hello world";
    }
}

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第11张图片

返回App类点击运行

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第12张图片

配置完成打开浏览器,输入localhost:8080/hello

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第13张图片

配置端口号,创建file   application.yml

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第14张图片

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第15张图片

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第16张图片

输入

【操作宝典】IntelliJ IDEA新建maven项目详细教程_第17张图片

你可能感兴趣的:(工具宝典:极简指南,intellij-idea,maven,java)