码迷,mamicode.com
首页 > 编程语言 > 详细

传统工程和springboot工程

时间:2020-01-16 10:57:33      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:release   enc   nbsp   spring   http   ima   relative   rest   localhost   

传统创建工程的方法:

  1.创建web工程

  2.配置springmvc以及web.xml

  3.编写Controller

  4.部署tomcat

springboot工程的创建方法:

  在没有联网的情况下,依旧可以创建工程,创建一个空工程,自己导入依赖,创建启动类

  1.创建一个空工程,导入依赖,依赖必须继承spring-boot-stater-parent

技术图片

 

 

 技术图片

 

 

 

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.0.2.RELEASE</version>
  <relativePath/>
</parent>				    

  

<dependencies>
    <!--因为没有tomcat,所以要添加spring mvc的依赖-->
    <dependency>
        <groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies> 

  2. 编写Controller类

@RestController
public class PojoController {

    @RequestMapping("/hello")
    public Map sayHello(){
        Map map = new HashMap();
        map.put("hi","sayhello");
        return map;
    }
}

  3.创建并编写主启动类(主启动类必须是Controller等其他类的父级)

@SpringBootApplication //主启动类
public class HelloApplication {
    public static void main(String[] args) {
        //run()方法的参数是本身的字节码和一个参数
        SpringApplication.run(HelloApplication.class,args);
    }
}

  4.启动带有main方法的主启动类

  并访问Controller中的url:http://localhost:8080/hello

技术图片

传统工程和springboot工程

标签:release   enc   nbsp   spring   http   ima   relative   rest   localhost   

原文地址:https://www.cnblogs.com/zhy819/p/11807569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!