Myeclipse下使用Maven搭建spring boot项目(第二篇)

接上一篇,已经使用Maven搭建了一个WEB项目
https://blog.csdn.net/sjl362255732/article/details/82821206

现在需要搭建spring boot框架,并实现一个HelloWorld的项目,让程序真正运行起来。

一、在pom.xml中引入spring-boot-start-parent,spring官方的叫stater poms,它可以提供dependency management,也就是依赖管理,引入以后在声明其它dependency的时候就不需要version了。

  
     org.springframework.boot  
     spring-boot-starter-parent  
     2.0.5.RELEASE  

二、需要在pom.xml中引入spring-boot-starter-web,spring官方解释spring-boot-start-web包含了spring webmvc和tomcat等web开发的特性。

  
        
          org.springframework.boot  
           spring-boot-starter-web  
         
 

三、如果我们要直接Main启动spring,那么以下plugin必须要添加,否则是无法启动的。如果使用maven的spring-boot:run的话就不需要此配置。

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

可以看到此时项目的jar依赖关系:

Myeclipse下使用Maven搭建spring boot项目(第二篇)_第1张图片
四、下面开始写程序,我们需要一个启动类,然后在启动类声明让spring boot自动给我们配置spring需要的配置,比如:@SpringBootApplication,为了可以尽快让程序跑起来,我们简单写一个通过浏览器访问hello world字样的例子:

@RestController     // 标明这是一个SpringMVC的Controller控制器,并返回json字符串
@SpringBootApplication      // Spring Boot项目的核心注解,主要目的是开启自动配置
public class HelloSpringBoot {
	@RequestMapping("/home")
    String home() {
        return "Hello World!";
    }
	
// 在main方法中启动一个应用,即:这个应用的入口
    public static void main(String[] args) {
        SpringApplication.run(HelloSpringBoot.class, args);  
    }
}

其中@SpringBootApplication声明让spring boot自动给程序进行必要的配置,等价于以默认属性使用@Configuration,@EnableAutoConfiguration和@ComponentScan。

@RestController返回json字符串的数据,直接可以编写RESTFul的接口。

五、运行我们的Application,我们先介绍第一种运行方式。第一种方式特别简单:右键Run As -> Java Application。之后打开浏览器输入地址:http://127.0.0.1:8080/home 就可以看到Hello world!了。
第二种方式右键project – Run as – Maven build – 在Goals里输入spring-boot:run ,然后Apply,最后点击Run。

六、运行报错
启动时报错NoClassDefFoundError: org/apache/juli/logging/LogFactory
参见下面的解决方法:
http://blog.csdn.net/a78270528/article/details/77548779
七、完整的pom.xml文件


	4.0.0
	com.bocom
	maventest
	war
	0.0.1-SNAPSHOT
	
	
		org.springframework.boot
		spring-boot-starter-parent
		1.5.3.RELEASE
		
	
	maventest
	http://maven.apache.org
	
		
			org.springframework.boot
			spring-boot-starter-web
		
		
		
			junit
			junit
			3.8.1
			test
		
		
		
		    org.apache.tomcat.embed
		    tomcat-embed-logging-juli
		    8.0.23
		
	
	
	    maventest
	      
                  
                    org.springframework.boot  
                    spring-boot-maven-plugin   
                  
              
	

至些,我们的Spring boot项目已经搭建完成,并成功的运行了HelloWorld的项目。

你可能感兴趣的:(spring,boot)