上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 59 下一页
摘要: 做单元测试的时候,报spring boot no tests found with test runner 'JUnit5'。 解决: 将junit5改为junit4就可以顺利测试。 阅读全文
posted @ 2020-12-02 17:58 jiduoduo 阅读(1486) 评论(0) 推荐(0) 编辑
摘要: 如果同时存在application.properties与application.yml,那么SB会如何去读呢? 默认是先读properties的,然后才会去读yaml文件。 以图中有几个配制文件,那么系统会如何去读呢? 1、会先读application.properties,然后如何检测到里面指定 阅读全文
posted @ 2020-12-02 16:57 jiduoduo 阅读(367) 评论(0) 推荐(0) 编辑
摘要: lombok自带一个日志注解,在需要输出日志的地方加入@Slf4j就可以。 下面就可以调用log.info('xxx'); error,debug等方法。 那么我们如何才能够将日志文件输出到指定文件呢?这样便于我们查询,万一有错误,如果没有日志文件,那是很糟糕的事。 1、要确保pom.xml里面有这 阅读全文
posted @ 2020-12-02 15:49 jiduoduo 阅读(13793) 评论(0) 推荐(0) 编辑
摘要: Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intent 阅读全文
posted @ 2020-12-02 11:20 jiduoduo 阅读(6925) 评论(0) 推荐(0) 编辑
摘要: 详细描述: Field xsMapper in com.xxx.controller.XsController required a bean of type 'com.xxx.mapper.XsMapper' that could not be found. The injection point 阅读全文
posted @ 2020-12-02 10:02 jiduoduo 阅读(978) 评论(0) 推荐(1) 编辑
摘要: 1、下载 https://projectlombok.org/download 2、装载 在应用程序中找到eclipse.app 然后显示包内容 将lombok.jar拷到目录中 在eclipse.ini中末尾增加:(这一步不加,下面一步操作完后,会自动增加-javaagent:/Applicati 阅读全文
posted @ 2020-12-01 17:28 jiduoduo 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-01 17:05 jiduoduo 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 建了一个项目,一直报错。提示: Failure to transfer org.apache.commons:commons-lang3:jar:3.8.1 from https://repo.maven.apache.org/maven2 was cached in the local repos 阅读全文
posted @ 2020-12-01 14:09 jiduoduo 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1、先安装sts Spring Tools Suite 装好以后,restart ide 2、新建File--New Project ... next> 最后ok 最后,Finish 如果是第一次建Spring boot项目,则需要等待下载。 到此一个简单的SB项目WEB框架就可以了。 阅读全文
posted @ 2020-12-01 11:35 jiduoduo 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 本文转自: https://blog.csdn.net/yuhan_0590/article/details/85100246 spring默认使用yml中的配置,但有时候要用传统的xml或properties配置,就需要使用spring-boot-configuration-processor了 阅读全文
posted @ 2020-12-01 11:22 jiduoduo 阅读(1549) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 59 下一页