eclipse中创建springboot项目(maven)

        讲述一下,关于创建简单的springboot项目,使用maven方式。下篇会说下使用spring插件(sts)方式,以及二者的区别,学习摸索阶段,欢迎大家指正。

        首先,在eclipse中创建一个maven项目,File>>new>>Maven Project。

eclipse中创建springboot项目(maven)_第1张图片

如果没有搜索到maven project,说明你的eclipse中没有安装maven,需要在eclipse中配置下maven。不清楚的话可以查阅关于eclipse配置maven的相关资料。然后选择webapp点next,

eclipse中创建springboot项目(maven)_第2张图片

然后填写项目名称和包名,点击finish即可。

eclipse中创建springboot项目(maven)_第3张图片

       修改pom.xml文件,修改后的pom.xml文件为以下代码。




  4.0.0

  com.test.springboot
  springboot-apply
  0.0.1-SNAPSHOT
  springboot-apply
  http://www.example.com
  
  
        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
    
  	
	
		junit
		junit
		4.11
		test
	
  

  
    
      
        
            org.springframework.boot
            spring-boot-maven-plugin
        
      
    
  

添加两个Java类:一个SpringBootApplicationFirst,为SpringBoot程序的入口类

package com.test.springboot.springboot_first;

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

/**
 * Hello world!
 *
 */
@SpringBootApplication
public class SpringBootApplicationFirst {
	
	public static void main(String[] args) {
		SpringApplication.run(SpringBootApplicationFirst.class, args);
	}
}

一个Controller,用于页面返回结果。

package com.test.springboot.springboot_first;

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

@RestController
public class TestController {
	@RequestMapping("test")
	public String test(){
		return "hello!";
	}
}

之后在SpringBootApplicationFirst类的eclipse界面中,右键Run As >> Java Application ,运行即可

项目结构目录截图如下

eclipse中创建springboot项目(maven)_第4张图片

运行之后,在console窗口,就能看到启动的springboot程序。

eclipse中创建springboot项目(maven)_第5张图片

浏览器页面访问,即可看到访问成功,返回controller的文字。

eclipse中创建springboot项目(maven)_第6张图片

你可能感兴趣的:(springboot)