
spring boot
文章平均质量分 83
NO如果
加油,进步
展开
-
eclipse 下载 spring boot插件地址 Spring Tool Suite (STS) for Eclipse
https://spring.io/tools/sts/legacy原创 2018-06-15 14:27:34 · 603 阅读 · 0 评论 -
eclipse插件生成的spring boot项目无法启动 错误 Unregistering JMX-exposed beans on shutdown
错误:解决方式:加入下面的依赖。<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> 加入后成功整个pom.xml内容如下<...原创 2018-06-15 15:22:37 · 320 阅读 · 0 评论 -
spring boot 视图 jsp 文件配置
application.yml 文件配置server: port: 8080spring: datasource: name: fitfree url: jdbc:mysql://127.0.0.1:3306/fitfree username: root password: 123456 # 使用druid数据源 ...原创 2018-06-19 10:36:09 · 368 阅读 · 0 评论 -
spring boot 学习 thymeleaf
原文地址:https://www.cnblogs.com/ityouknow/p/5833560.htmlthymeleaf介绍简单说, Thymeleaf 是一个跟 Velocity、FreeMarker 类似的模板引擎,它可以完全替代 JSP 。相较与其他的模板引擎,它有如下三个极吸引人的特点:1.Thymeleaf 在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,...转载 2018-06-19 14:03:29 · 131 阅读 · 0 评论 -
idea maven项目报 Unable to start EmbeddedWebApplicationContext due to missing Embedde
Unable to start embedded container; nested exception is org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFa...原创 2018-07-04 23:25:50 · 1020 阅读 · 0 评论