41.4.1 <global-method-security> 这个元素是为Spring Security beans上的安全方法添加支持的主要手段。可以通过使用注释(在接口或类级别定义)或者通过使用AspectJ语法将一组切入点定义为子元素来保护方法。 <global-method-securit ...
分类:
其他好文 时间:
2020-08-18 15:35:50
阅读次数:
57
1. com.github.crab2died.exceptions.Excel4JException: java.beans.IntrospectionException: Can not get the getter or setter method 标题不能大写 参考文档地址:https:// ...
分类:
编程语言 时间:
2020-08-17 16:58:49
阅读次数:
73
1、org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'helloController': Unsatisfied dependency expressed ...
分类:
数据库 时间:
2020-08-10 17:33:24
阅读次数:
260
1. ModelsSortHelper import com.google.common.base.Strings; import org.springframework.beans.BeanUtils; import org.springframework.util.Assert; import ...
分类:
编程语言 时间:
2020-08-10 13:18:48
阅读次数:
82
项目地址https://github.com/yinjihuan/kitty-cloud[1]今天遇到了一个错误,一般的错误提示会很明显,一看就知道是什么问题。今天遇到的这个说实话真的不好找原因,一般在这种情况下该怎么解决呢?分享下我的思路吧,不一定是最好的,至少有用。直接上图吧,下面是报错信息:为了方便查看,我把最重要的信息提取出来,如下:org.springframework.beans.fa
分类:
其他好文 时间:
2020-07-31 01:06:39
阅读次数:
84
MyBatis是一款优秀的持久层框架,同样也是做OR Mapping的。与JPA不同,MyBatis里面需要我们自己来定制sql。 MyBatis和JPA的选择 其实如果业务比较操作比较简单使用JPA加hibernate还是比较方便的。但是如果业务复杂即sql映射也复杂这个时候还是使用mybatis ...
分类:
数据库 时间:
2020-07-30 01:48:35
阅读次数:
122
spring的xml配置文件头: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/X ...
分类:
编程语言 时间:
2020-07-29 21:33:54
阅读次数:
59
注意:spring4之后,使用注解开发需要导入AOP包org.springframework:spring-aop:5.2.5.RELEASE以及context约束,增加注解的支持 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http:/ ...
分类:
编程语言 时间:
2020-07-28 22:24:12
阅读次数:
70
构建bean文件: public class People { private String name = "小明"; } 编写配置类: @Configuration @Import(ApplicationConfig2.class) public class ApplicationConfig { ...
分类:
编程语言 时间:
2020-07-28 22:20:26
阅读次数:
71
声明优先原则 <dependencies> <!-- spring-beans-4.2.4 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version ...
分类:
编程语言 时间:
2020-07-28 10:18:11
阅读次数:
86