摘要:
maven配置 <!--mail--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> applicati 阅读全文
摘要:
枚举 package com.meeno.boot.oa.employee.enums; import com.alibaba.fastjson.annotation.JSONType; import com.meeno.boot.oa.common.BaseEnum; import com.mee 阅读全文
摘要:
pom.xml <dependencyManagement> <dependencies> <dependency> <groupId>org.activiti.dependencies</groupId> <artifactId>activiti-dependencies</artifactId> 阅读全文
摘要:
Spring Boot1.4版本后配置更改为: spring.http.multipart.maxFileSize = 10Mb spring.http.multipart.maxRequestSize=100Mb Spring Boot2.0之后的版本配置修改为: spring.servlet.m 阅读全文
摘要:
#前言 在Spring MVC的时候,我们使用xml来配置bean,如今的Spring boot推荐我们使用元注解的发生,那就听Spring Boot的推荐,下面我就为大家来介绍下Spring Boot Bean的使用。 #声明为SpringBean的元注解 @Repository注解:Dao层使用 阅读全文
摘要:
前言 Spring AOP使用了动态代理技术,动态代理在业界比较流行的实现方式有,CGLIB,Javassist,ASM等等。 Spring动态代理实现方式 Spring采用了JDK和CGLIB两种方式,我们一般都是接口,配实现类,对应这种方式Spring采用的代理方式是JDK代理,如果实现类没有使 阅读全文
摘要:
#创建wzq.properties #wzq.properties注入User实体类中 @PropertySource(value = "classpath:wzq.properties",ignoreResourceNotFound = true) classpath:wzq.properties 阅读全文
摘要:
application-dev.yml spring: rabbitmq: username: admin password: admin host: 192.168.0.45 port: 5672 消费者实现类 MyConsumer.java package com.meeno.inner.oa. 阅读全文