使用IDEA创建SpringBoot项目

参考:

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

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


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



2.输入Artifact



3.勾选Web



4.点击finish完成


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


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";  
        }  
    }  

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);  
        }  
    }  

@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包即可


=============这是华丽的分割线==================================

上面是我转载的文章,下面粘贴一下我建立的工程目录图

在Application上不需要添加@ComponentScan,启动之后自然能扫描到所有模块下的包

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值