#include<iostream> using namespace std; struct node { int v,height; node*lchild; node*rchild; int data; }; int x; node* newNode(int v) { node*Node =ne ...
分类:
其他好文 时间:
2020-08-13 12:14:51
阅读次数:
95
flush 方法 将Managed状态的实体中的数据更新到数据库中(不用等到 commit 了) flush 方法测试 find 之后 setter 之后 flush @Test public void test() { EntityManagerFactory factory = Persiste ...
分类:
其他好文 时间:
2020-07-29 21:37:22
阅读次数:
71
clause.hpp clause.cpp clause.hpp 声明了常用类型的别名: /* */ typedef int * literal_iterator;typedef const int * const_literal_iterator; /* */ 定义结构类型Clause、claus ...
分类:
其他好文 时间:
2020-07-29 21:34:34
阅读次数:
76
find方法 立即加载:在调用find方法的时候,就会发送sql语句查询数据库。 找到返回实体类对象,可以用于remove,setter,remove之后还可以调用persist保存。 找不到返回null。 find方法测试 find之后setter实现更新 @Test public void te ...
分类:
其他好文 时间:
2020-07-29 21:17:17
阅读次数:
78
来源:https://blog.csdn.net/jinhaijing/article/details/83902191 使用@Value赋值的几种类型; //1、基本数值 //2、可以写SpEL; #{}。 SpEL(Spring Expression Language),即Spring表达式语言 ...
分类:
编程语言 时间:
2020-07-26 22:50:18
阅读次数:
112
准备工作 创建表 创建一个实体类 创建MyBatis配置文件 配置数据库信息 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "htt ...
分类:
其他好文 时间:
2020-07-26 15:25:46
阅读次数:
59
多张图下载,下载图片,跨域的不可以 download.js源码 //download.js v4.21, by dandavis; 2008-2018. [MIT] see http://danml.com/download.html for tests/usage // v1 landed a F ...
分类:
其他好文 时间:
2020-07-26 00:12:41
阅读次数:
64
Authelia 贴一下官方描述: Authelia is an open source authentication and authorization server protecting modern web applications by collaborating with reverse ...
分类:
其他好文 时间:
2020-07-24 16:13:19
阅读次数:
144
设计模式之适配器模式 Intro 适配器模式(Adapter),将一个类的接口适配成用户所期待的。一个适配允许通常因为接口不兼容而不能在一起工作的类工作在一起,做法是将类自己的接口包裹在一个已存在的类中。也被称为 Wrapper 模式。 通常这个类是外部的类,不能直接修改,所以需要做一层包装,以适配 ...
分类:
其他好文 时间:
2020-07-24 09:32:40
阅读次数:
72
springboot 使用restTemplate发送post请求,传json数据,结果报错401 Unauthorized: [no body] 添加相应的数据格式就解决了 @Bean public RestTemplate registerTemplate() { RestTemplate re ...
分类:
其他好文 时间:
2020-07-22 20:32:37
阅读次数:
286