Spring_Boot之一:启动时报 java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication

刚开始学习springboot,跟着老师写了一个小demo,老师的就起来了,我的怎么也不起来,一直再报java.lang.ClassNotFoundException折腾了好长时间,也百度了很久,没有解决,最后请教同事然后包的版本降低后就有意外发生了,在这给大家说哈,免得耗费大家宝贵的时间

我的是maven项目,先给上pom.xml

Spring_Boot之一:启动时报 java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication_第1张图片

Spring_Boot之一:启动时报 java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication_第2张图片

主要是这个依赖包的版本太高,所以一直报找不到包后面改为1.3.5以后就可以启动了

粘上我的代码,springboot Maven项目的搭建,我们智力使用main函数启动项目

1.添加依赖


	4.0.0

	com.siyang
	spring_boot
	0.0.1-SNAPSHOT
	jar

	spring_boot
	http://maven.apache.org

	

	
		UTF-8
		
		1.8
	

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


	
		
			org.springframework.boot
			spring-boot-starter-web
			
			
				
		
		
		
		
			com.alibaba
			fastjson
			1.2.15
		
		
		
		
            org.springframework.boot
            spring-boot-devtools
            true
           true
		
		
		
		
			junit
			junit
			3.8.1
			test
		
	

2. controller

package com.siyang.spring_boot;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
 * @RestController等价于springmvc的@Controller
 * @author admin
 *
 */
@RestController
public class HelloController {

	@RequestMapping(value="hello")
	public String hello(){
		return "Hello Word 之 Spring boot";
	}
}

3.启动类

package com.siyang.spring_boot;

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

/**
 * Hello world!
 *
 */
@SpringBootApplication
public class App 
{
    public static void main( String[] args )
    {
    	/**
    	 * main方法启动我们的程序
    	 */
        SpringApplication.run(App.class, args);
    }
}

4启动

Spring_Boot之一:启动时报 java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication_第3张图片

访问地址:http://localhost:8080/hello

Spring_Boot之一:启动时报 java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication_第4张图片

你可能感兴趣的:(Spring_Boot)