idea下SpringBoot项目框架搭建纯净版-maven创建项目

SpringBoot项目创建纯净版

第一步:打开idea,File->new ->Project->maven
选择合适的JDK版本,不勾选模板,然后点击next。

idea下SpringBoot项目框架搭建纯净版-maven创建项目_第1张图片

第二步:填写完自定义包名和项目名称,点击Finish。

idea下SpringBoot项目框架搭建纯净版-maven创建项目_第2张图片

项目创建完成

idea下SpringBoot项目框架搭建纯净版-maven创建项目_第3张图片

第三步:在pom.xml中添加相关依赖


<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>

    <groupId>org.wsgroupId>
    <artifactId>demo01artifactId>
    <version>1.0-SNAPSHOTversion>

    
    <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.7.0version>
    parent>

    <dependencies>
    
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
    dependencies>

    <properties>
        <maven.compiler.source>8maven.compiler.source>
        <maven.compiler.target>8maven.compiler.target>
    properties>

project>

第四步:编写程序入口类,标志就是加了@SpringBootApplication

例如MyApplication.java

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

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

``

第五步:编写Controller类,标志就是加了@RestController

例如HelloController.java

package com.org.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    @RequestMapping("/hello")
    public String Hello(){
        return "hello controller";
    }
}

在浏览器输入 localhost:8080/hello 就可以看到controller类中方法的返回值。

idea下SpringBoot项目框架搭建纯净版-maven创建项目_第4张图片

注意:一般包名可以写成 groupID+artificialID。
此处为 org.ws.demo01
后面再建对应的dao,sevice, controller目录
但是不用这个也不影响程序运行。

你可能感兴趣的:(环境配置,intellij-idea,spring,boot,maven,框架搭建,纯净版)