最近参与做flowable的项目开发,因为项目的审批信息比较简单,不打算自己自定义表来存储,就直接使用flowable的comment来存储好啦,学习了一下flowable的comment,其实还是很简单的,添加审批信息或查询审批信息的方法都在org.flowable.engine.TaskServ ...
分类:
其他好文 时间:
2021-04-26 13:37:09
阅读次数:
0
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency></dependencies> ...
分类:
其他好文 时间:
2021-04-24 13:41:04
阅读次数:
0
手动注册bean 此种方式注册的bean在调用时将由spring进行创建,相当于延迟加载bean import org.springframework.beans.BeansException;import org.springframework.beans.factory.support.Bean ...
分类:
编程语言 时间:
2021-04-24 13:12:04
阅读次数:
0
https://blog.csdn.net/Teamo_mc/article/details/111692589?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2~aggregatepage~first_rank_v2~r ...
分类:
其他好文 时间:
2021-04-24 11:58:42
阅读次数:
0
Spring Boot 下使用JPA,报org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set错误,异常信息如下: Caused ...
分类:
编程语言 时间:
2021-04-23 12:28:00
阅读次数:
0
#Nacos(注册中心) 有关Spring Cloud Alibaba之前写过三篇文章。 Spring Cloud Alibaba(1) 入门篇 Spring Cloud Alibaba(2) RestTemplate微服务项目 Spring Cloud Alibaba(3) Nacos概述 有关注 ...
分类:
编程语言 时间:
2021-04-23 12:21:14
阅读次数:
0
Introductions(引用),在 Aspect 中称为类型间的声明,使切面能够声明被通知的对象(拦截的对象)实现给定的接口,并提供该接口的实现。 简单点说可以将一个类的实现方法复制到未实现的类中。 通过 @DeclareParents 注解进行声明,声明在一个父类型的属性上(比如接口),其中注 ...
分类:
编程语言 时间:
2021-04-23 12:12:26
阅读次数:
0
Spring解决循环依赖的问题 // 业务开发中经常这么写,field注入、setter注入都OK,但是构造器注入会报错BeanCurrentlyInCreationException // 有这种循环依赖问题存在Spring却依然能够正常启动工作,为什么?Spring帮我们搞定了:三级缓存 @Se ...
分类:
编程语言 时间:
2021-04-22 16:18:40
阅读次数:
0
Spring注解 @Controller(表示SpringMVC的Controller)、@RestController(Rest风格控制器,还可以若要返回JSON不需要@ResponseBody了)、@Service(业务服务层)、@Autowired(如果允许null值,required=fal ...
分类:
编程语言 时间:
2021-04-22 16:17:58
阅读次数:
0
概述 1、Spring 是轻量级的开源的 JavaEE 框架2、 Spring 可以解决企业应用开发的复杂性3、Spring 有两个核心部分:IOC 和 Aop(1)IOC:控制反转,把创建对象过程交给 Spring 进行管理(2)Aop:面向切面,不修改源代码进行功能增强4、Spring 特点(1 ...
分类:
编程语言 时间:
2021-04-22 15:54:53
阅读次数:
0