datart源码二次开发
datart源码二次开发
1.源码
https://gitee.com/running-elephant/datart
2.修改配置
2.1JDK统一修改为8
2.2配置文件
3.启动后端
4.启动前端(前端未启动成功)
参考文档
https://blog.csdn.net/byc233518/article/details/122929921
以下是与分类 “学习” 相关联的文章
datart源码二次开发
1.源码
https://gitee.com/running-elephant/datart
2.修改配置
2.1JDK统一修改为8
2.2配置文件
3.启动后端
4.启动前端(前端未启动成功)
参考文档
https://blog.csdn.net/byc233518/article/details/122929921
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import java.io.IOException;
public class...
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;
@Component
public class FlexibleDateTimeConverter implements Converter
@Over...
memcached:不支持持久化
linux安装memcached:
1.yum安装
yum search memcached|grep ^memcached
2.源码安装
a.安装依赖: yum install -y gcc gcc-c++ automake autoconf make cmake libevent-devel.x86_64
b.下载源码: wge...
CREATE TABLE orders (
order_id INT NOT NULL AUTO_INCREMENT,
customer_id INT NOT NULL,
order_date DATE NOT NULL,
total_amount DECIMAL(10, 2),
PRIMARY KEY (order_id, order_date)
)
PARTITION BY RANGE (YEAR(orde...
缓冲池:
innodb_buffer_pool_size
innodb_buffer_pool_instances
innodb_log_buffer_size
innodb_log_file_size
临时表:
tmp_table_size
max_heap_table_size
磁盘临时表
innodb_tmpdir
innodb_tmp_tablespace
缓存刷新:
innodb_flush_log_at_tr...