摘要:
mybatis 如何在项目中配置 mapper ? 方法一: 直接 resource 引用 方法二: 用类注册的方式引用: 方法三: 配置扫描包名: mybatis 有一个规定, 如果 mappers 配置 类 或者 包 的话, mapper 文件要 和 接口 文件放到同一个目录,不然找不到目录 报 阅读全文
2020年10月21日 #
摘要:
hibernate 比较不好的一点 就是全表映射, 比如不好定制 sql, 把表中的所有字段都 select 出来,增加网络开销 和 序列化的开销,增加了 CPU 的操作 使用 hibernate 不需要 写 sql,屏蔽了 sql, 不利于 调优 项目日志导入: <project xmlns="h 阅读全文
2020年10月20日 #
摘要:
1. /** * Initialize the given bean instance, applying factory callbacks * as well as init methods and bean post processors. * <p>Called from {@link #c 阅读全文
摘要:
配置 factories 文件,然后 让 spring 去扫描到 阅读全文
摘要:
1. 总结: 不要 加上 @EnableWebMvc 这样 springboot 自动加上 的 静态资源处理会失效 2. 如何自定义 404 响应页面 springboot 默认页面 视图解析器 自定义异常处理 以上做法是错误的 阅读全文
摘要:
Springboot autoconfigure 这个东西是专门 用来定义默认配置的 点进去 查看一下 WebMvcAutoConfiguration.java 凡是有 webjars/** 的请求,都会被导入到 resources/webjars 路径里去 阅读全文
摘要:
@Component public class AppBeanPostProcessor implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization(Object bean, Strin 阅读全文
2020年10月15日 #
摘要:
shell 编程入门 1. 系统环境变量 1. 全局配置文件 /etc/profile /etc/profile.d/*.sh /etc/bashrc 2. 个人配置文件 当前用户 /.bash_profile 当前用户 /.bashrc shell 环境变量分离: 在 linux系统中,环境变量按 阅读全文
摘要:
/** * 获取登录信息 * @param url 输入的 url * @return */ @GetMapping("/ouath/url") public Result<?> jumpToApp(@RequestParam(defaultValue = "",required = false) 阅读全文