运行微服务实例时报错:java.lang.NoClassDefFoundError: org/springframework/boot/context/embedded/FilterRegistrat

一、报错信息:

javalang.NoClassDefFoundError: org/springframework/boot/context/embedded/FilterRegistrationBean

二、原因分析:

找不org.springframework.boot.context.embedded.FilterRegistrationBean,查看源码发现:在1.5.6版本中FilterRegistrationBean的包路径已经改为org.springframework.boot.web.servlet.org.springframework.boot.web.servlet.FilterRegistrationBean,所以引发错误。

三、解决方法:

在pom文件内添加以下代码


	    
	        
		    org.springframework.cloud
		    spring-cloud-dependencies
		    Dalston.SR3
		    pom
		    import
		
		
			org.springframework.boot
			spring-boot-starter-velocity
	   
	    
  

欢迎大家关注我的微信公众号!

在这里插入图片描述

请打开支付宝扫一扫,有红包领哦!

在这里插入图片描述
感谢阅读,希望对你有所帮助。

你可能感兴趣的:(java)