摘要: springboot静态文件访问的问题,相信大家也有遇到这个问题,如下图项目结构。 项目结构如上所示,静态页面引入js、css如下所示。 大家肯定都是这样写的,但是运行的话就是出不来效果,图片也不显示。原因是因为springboot项目中的一个配置文件spring.mvc.static-path-p 阅读全文
posted @ 2019-01-18 17:36 明天,你好啊 阅读(35429) 评论(0) 推荐(1) 编辑
摘要: 错误信息:Cannot perform conversion to XML from legacy HTML: The nekoHTML library is not in classpath. nekoHTML 1.9.15 or newer is required for processing 阅读全文
posted @ 2019-01-18 17:34 明天,你好啊 阅读(2002) 评论(0) 推荐(0) 编辑
摘要: springBoot,默认使用的json解析框架是Jackson。 虽然jackson能够满足json的解析,如果想使用熟悉的alibaba的fastjon,我们只需要在pom文件中配置maven依赖就好。<!-- fastjson依赖库--><dependency><groupId>com.ali 阅读全文
posted @ 2019-01-18 17:33 明天,你好啊 阅读(2286) 评论(0) 推荐(0) 编辑
摘要: 如果想要监控自己的项目的访问情况及查看配置信息,druid是一个很好的选择,可能你会问druid是什么?有什么用?优点是什么? Druid简介 Druid是阿里巴巴开源的数据库连接池,号称是Java语言中最好的数据库连接池,能够提供强大的监控和扩展功能。GitHub地址:https://github 阅读全文
posted @ 2019-01-18 17:32 明天,你好啊 阅读(5945) 评论(0) 推荐(1) 编辑
摘要: 下面是idea软件创建的项目目录,这里总结了一下转发与重定向的问题,详解如下。 首先解释一下每个文件夹的作用,如果你是用的是idea创建的springboot项目,会在项目创建的一开始resources文件夹下自动创建static以及templates文件夹。也就是说项目初始时有java、resou 阅读全文
posted @ 2019-01-18 17:30 明天,你好啊 阅读(44876) 评论(2) 推荐(1) 编辑
摘要: 在application.properties中添加属性ai.name=明ai.age=22ai.sex=男定义配置类如下,前缀(prefix)可自定义修改,本文为 ai。@ConfigurationProperties(prefix = “ai”)public class PropertiesSe 阅读全文
posted @ 2019-01-18 17:29 明天,你好啊 阅读(2618) 评论(0) 推荐(0) 编辑
摘要: html页面代码如下 <form method="post" action="/file/upload1" enctype="multipart/form-data"><p>文件:<input type="file" name="file"><input type="submit" value="上 阅读全文
posted @ 2019-01-18 17:27 明天,你好啊 阅读(443) 评论(0) 推荐(0) 编辑
摘要: spring-boot-starter-actuator的作用,actuator是监控系统健康情况的工具。使用这个功能首先要先添加依赖,如下。<!-- 监控和管理生产环境--><dependency><groupId>org.springframework.boot</groupId><artifa 阅读全文
posted @ 2019-01-18 17:26 明天,你好啊 阅读(6274) 评论(1) 推荐(0) 编辑
摘要: 1、添加依赖 <!-- 发送邮件. --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2、配置app 阅读全文
posted @ 2019-01-18 17:25 明天,你好啊 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 错误如下:java.lang.IllegalStateException: Mapped class was not specifiedat org.springframework.util.Assert.state(Assert.java:73)at org.springframework.jdb 阅读全文
posted @ 2019-01-18 17:23 明天,你好啊 阅读(2016) 评论(2) 推荐(0) 编辑