spring boot遇到的问题

1.cannot initialize context because there is already a root application context present - check whether you have multiple contextloader* definitions in your web.xml!

解决方案:我这个工程spring boot里没有web.xml。 在intellij里启动main可以,发布到tomcat 里启动就报这个。回退到之前一直用的2.6.2就好了。还没来得及进一步分析原因  (dubbo 2.6.3 默认添加了 web-fragment.xml,这个特性基于 servlet 3.0 ,容器会自动扫描这个文件,dubbo-fragment.xml 里面添加一个ContextLoaderListener。Spring Boot 2.0 也基于 Servlet 3.0 添加这个listener,这样就会报错,算是Dubbo的bug。添加一个web.xml 关闭这个特性就好了。)

 

2.[ main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource 
解决方案:添加如下红色部分

@EnableDubbo(scanBasePackages="com.sf")
@SpringBootApplication
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
@ImportResource({"classpath:spring/spring-disconf.xml"})
public class App extends SpringBootServletInitializer {

3.org.eclipse.jetty.util.multiexception: multiple exceptions  

本人遇到的问题是:

在pom.xml文件中


   org.springframework.boot
   spring-boot-starter-jetty
   provided

当时注销了 provided 这段因为在spring boot应用中内嵌了jetty因而不需要provided,当时部署到jetty环境启动的时候,忘记把注销放开了,导致把spring-boot-starter-jetty内置的jetty该外部环境的jetty产生了冲突。

 

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