• 使用IDEA创建SpringBoot项目


    参考:

    慕课网 廖师兄:两小时学会Springboot

    http://www.imooc.com/learn/767

    1.打开IDEA,创建新项目,选择Spring Initializr

    2.输入Artifact

    3.勾选Web

    4.点击finish完成

    5.进入项目,可以将以下内容删除

    pom.xml文件:

    
    
    	4.0.0
    
    	com.example
    	springbootdemo
    	0.0.1-SNAPSHOT
    	jar
    
    	springbootdemo
    	Demo project for Spring Boot
    
    	
    	
    		org.springframework.boot
    		spring-boot-starter-parent
    		1.5.2.RELEASE
    		 
    	
    
    	
    		UTF-8
    		UTF-8
    		1.8
    	
    
    	
    		
    		
    			org.springframework.boot
    			spring-boot-starter-web
    		
    		
    		
    			org.springframework.boot
    			spring-boot-starter-test
    			test
    		
    	
    
    	
    	
    		
    			
    				org.springframework.boot
    				spring-boot-maven-plugin
    			
    		
    	
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53

    6.创建一个HelloController

    package com.example;
    
    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,this is a springboot demo";
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    7.程序自动生成的SpringbootdemoApplication,会有一个@SpringBootApplication的注解,这个注解用来标明这个类是程序的入口

    package com.example;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    //入口
    @SpringBootApplication
    public class SpringbootdemoApplication {
    
    	public static void main(String[] args) {
    		SpringApplication.run(SpringbootdemoApplication.class, args);
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    @SpringBootApplication开启了Spring的组件扫描和springboot的自动配置功能,相当于将以下三个注解组合在了一起

    (1)@Configuration:表名该类使用基于Java的配置,将此类作为配置类

    (2)@ComponentScan:启用注解扫描

    (3)@EnableAutoConfiguration:开启springboot的自动配置功能

    8.运行SpringbootdemoApplication类

    测试:

    在地址栏中输入http://localhost:8080/hello

    9.使用启动jar包的方式启动

    (1)首先进入项目所在目录,如果是mac系统在项目上右键,选择Reveal in Finder,Windows系统在项目上右键选择Show in Explorer,即可打开项目所在目录

    (2)打开终端,进入项目所在目录

    cd /Users/shanml/IdeaProjects/SpringbootDemo

    输入mvn install,构建项目

    (3)构建成功后,在项目target文件夹下会多出一个jar包

    (4)使用java -jar springbootdemo-0.0.1-SNAPSHOT.jar

    启动jar包即可

  • 相关阅读:
    Eclipse iceoryx(千字自传)
    【云开发】- 在小程序端操作云存储
    【计算机网络 - 自顶向下方法】计算机网络和因特网
    小脑萎缩患者平时生活中应该注意哪些?
    Netty 进阶学习(九)-- 粘包与半包
    SpringBoot拦截器和动态代理有什么区别?
    Springboot毕业设计毕设作品,微信垃圾分类小程序系统设计与实现
    Facebook个人主页和公共主页的区别
    【华为机试真题 JAVA】第k个排列-100
    <蓝桥杯软件赛>零基础备赛20周--第1周
  • 原文地址:https://blog.csdn.net/m0_67401499/article/details/126553720