开发时使用,生产环境关闭 1.Adding devtools to your project <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> ...
分类:
其他好文 时间:
2021-04-08 13:37:40
阅读次数:
0
首先配置ThreadPoolTaskScheduler线程池: package cn.demo.support.config; import org.springframework.context.annotation.Bean; import org.springframework.context ...
分类:
编程语言 时间:
2021-04-08 13:36:55
阅读次数:
0
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:
其他好文 时间:
2021-04-07 11:44:50
阅读次数:
0
错误: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path res ...
分类:
编程语言 时间:
2021-04-07 11:40:38
阅读次数:
0
添加依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.5</version> </dependency> <dependency> <g ...
分类:
编程语言 时间:
2021-04-07 11:07:19
阅读次数:
0
原因:未将客户端上传的File文件,处理为MultipartFile 解决:在xml中配置如下 <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver ...
分类:
其他好文 时间:
2021-04-07 10:53:58
阅读次数:
0
在做springcloud项目时,出现了如下报错: 关键异常信息为: 1.简单看一下报错信息,找不到依赖,或者可以理解为依赖失败,看一下截取的部分报错信息 org.springframework.beans.factory.UnsatisfiedDependencyException: Error ...
分类:
编程语言 时间:
2021-04-07 10:48:54
阅读次数:
0
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
编程语言 时间:
2021-04-06 15:03:33
阅读次数:
0
一、添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <version>2.4.4</version> </depen ...
分类:
编程语言 时间:
2021-04-06 14:26:35
阅读次数:
0
SpringBoot发送邮件 1、pom <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</ ...
分类:
编程语言 时间:
2021-04-06 14:13:11
阅读次数:
0