Spring IO 问题总结

Posted jtianlin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring IO 问题总结相关的知识,希望对你有一定的参考价值。

1. Spring boot 嵌入的tomcat不能启动: Unregistering JMX-exposed beans on shutdown    

  在官网(http://start.spring.io/)上generate project,将生成的项目导入idea中,运行之后控制台输出“Unregistering JMX-exposed beans on shutdown”,

     tomcat也没有运行。寻找原因,看了下pom.xml文件中tomcat依赖关系如下:

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
</dependency>

    将<scope>provided</scope>注释掉,重新运行项目便可启动嵌入的tomcat服务器:Tomcat started on port(s): 8080 (http)

    参见:http://blog.csdn.net/sun20100912/article/details/52013463

    如果还不行,在引入WEB包:

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
</dependency>

 

 










以上是关于Spring IO 问题总结的主要内容,如果未能解决你的问题,请参考以下文章

java缓冲字符字节输入输出流:java.io.BufferedReaderjava.io.BufferedWriterjava.io.BufferedInputStreamjava.io.(代码片段

BootStrap有用代码片段(持续总结)

Spring学习总结-Spring依赖关系

MorkDown 常用语法总结

Spring boot:thymeleaf 没有正确渲染片段

BootStrap实用代码片段(持续总结)