logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

阿里,腾讯云 CentOS 7的版本 防火墙关闭与开启

先开启防火墙:systemctl start firewalld.service设置要关的防火墙ipfirewall-cmd --zone=public --add-port=8161/tcp --permanent关闭防火墙systemctl stop firewalld.service最后配置安全组(阿里云,腾讯云上配置)...

#centos#腾讯云#服务器
docker之Gitlab镜像安装及运行

镜像仓库地址:https://hub.docker.com/r/gitlab/gitlab-ce镜像拉取:docker pull gitlab/gitlab-ce镜像运行:docker run --detach --publish 8443:443 --publish 8099:80 --name gitlab --restart always --volume /wangqinmin/gitla

mybatis的单独使用 (不使用spring整合),以此来熟悉mybatis使用原理。

写这篇文章其实就是吃多了,没事干。其实我一直在思考一个问题,程序员的理想生活应该是什么样子 ?说实话,我的理念太超前了。不吹牛了。这篇文章的作用,就是让很多程序员,认识到mybatis是怎么完成对数据库的操作的。无非就是代码上,设置数据库的连接地址、用户名、密码、要运行的SQL语句,然后就得到数据了,就像使用一个工具类一样,只不过,这玩意儿有配置。正题: mybatis是个持久层的框架,不需要整合

org.apache.ibatis.reflection.ReflectionException: There is no setter for property named 'id' in 'cla

org.apache.ibatis.reflection.ReflectionException: There is no setter for property named 'id' in 'class com.wqm.step.pojo.UUser'at org.apache.ibatis.reflection.Reflector.getSetInvoker(Reflector.java:3.

#mybatis
clickhouse数据库操作基本sql记录

删除某表的id为 '200546044411387904' 的数据ALTER TABLE charge_sensor.cp_d_tqload_log DELETE WHERE id in ('200546044411387904');

#sql#数据库
到底了