- 博客(91)
- 收藏
- 关注
原创 renren-后端开发笔记
serialVersionUID private static final long serialVersionUID = -6279791315828947873L;serialVersionUID作用:相当于java类的身份证。主要用于版本控制。serialVersionUID作用是序列化时保持版本的兼容性,即在版本升级时反序列化仍保持对象的唯一性。序列化时为了保持版本的兼容性,即在版本升级时反序列化仍保持对象的唯一性。有两种生成方式:一个是默认的1L,比如:private s
2022-05-27 13:50:32 674
原创 生成 二维码或条码转化成Base64
条码 /** * 给前端产生一个条形码 * * @param number 编码 * @param width 宽度 * @param height 高度 */ public static String getCode(String number, Integer width, Integer height) { // 生成条形码 BufferedImage image = getBarCode(
2022-04-26 14:34:38 2517 1
原创 el-input 正则,非负数且只有一个小数点
正则验证<el-input @keyup.native="scope.row.变量 = handleOninput(scope.row.变量)" v-model="scope.row.变量" ></el-input> //正则验证 handleOninput(value){ let str = value; let len1 = str.substr(0, 1); let len2 = str.sub
2022-04-13 15:32:13 1434
原创 获取服务器IP
public void getIpAddressNew() { try { //用 getLocalHost() 方法创建的InetAddress的对象 InetAddress address = InetAddress.getLocalHost(); System.out.println(address.getHostName());//主机名 System.out.println(address..
2022-04-06 10:58:43 808
原创 Date 格式化
Date date = new Date(); String strDateFormat = "yyyy-MM-dd"; SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat); String str = sdf.format(date); ParsePosition pos = new ParsePosition(8); Date createTime = sdf.parse(str, pos);
2022-03-23 10:19:25 2168
原创 查询与删除唯一约束
根据约束名称查询表明SELECT constraint_name, constraint_type, table_name FROM all_constraints WHERE CONSTRAINT_NAME = 'PK5_1_1_1_2_2_1';查询唯一约束SELECT * FROM user_indexes WHERE index_name = 'PK5_1_1_1_2_2_1'查询表中又那些约束SELECT CONSTRAINT_NAME, CONSTRA
2022-03-22 10:38:30 417
原创 Java Maven 生成PDF文件
选择:启动表单向导 <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <versio.
2022-02-14 10:08:50 486
原创 element ui 使用
根据|分割 变成单选框 <label v-for="(item,index) in scope.row.qualityValue.split('|')" :key="index"> <el-radio v-if="scope.row.attrType=='C'" v-model="radiolist[scope.$index]" :label="item" @change="xuanZe(scope.row.x2,scope.row.attrId,scop
2022-02-07 10:40:25 726
原创 Xshell安装 tomcat jdk
tomcat 安装上传tomcat先查看防火墙状态systemctl status firewalld开发端口firewall-cmd --zone=public --add-port=8080/tcp --permanent端口开放成功之后更新防火墙规则firewall-cmd --reload查看防火墙列表firewall-cmd --zone=public --list-ports重启Tomcat属性./startup.sh...
2021-12-20 16:47:30 528
原创 用0自动补位
标题 //不够三位数自动补齐 int qty = 1; NumberFormat formatter = NumberFormat.getNumberInstance(); formatter.setMinimumIntegerDigits(3); formatter.setGroupingUsed(false); String s = formatter.format(qty); 结果 001
2021-08-25 17:05:50 159
原创 mysql
日期格式化SELECT count( id ) -- date(create_time)FROM equ_base_record WHERE date( create_time ) = '2021-08-25'
2021-08-25 16:43:24 135
原创 ruoyi前端使用指南
前端查询条件传向后端格式化 // 查询条件提交的日期格式化 changeDate: function (date, dateString) { const date1 = this.$moment(date).format('YYYY-MM-DD') this.queryParam.updateTime = date1 },列表展示的时候格式化展示数据 <span slot="updateTime" slot-scope="text, record"
2021-08-23 15:50:15 4532 3
原创 ruoyi使用指南
新建第一步第二步第三步第四步<dependency> <groupId>com.ruoyi</groupId> <artifactId>ruoyi-testHome</artifactId></dependency>第五步<dependency> <groupId>com.ruoyi</groupId> <artifactId&g
2021-07-27 10:25:01 3563
原创 tomcat 日志报错
报错Failed to parse configuration class [com.crm.CrmApplication]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/fadada-config.properties]报错不能打开文件 在注解中加上 classpath:
2021-07-12 17:17:44 606 1
原创 Idea 打包
xml配置修改打成war包<packaging>war</packaging> 打成jar包<packaging>jar</packaging> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <versi
2021-07-12 11:26:47 61
原创 若依框架 项目运行报错问题
org.quartz.JobPersistenceException: Couldn’t retrieve trigger: Table ‘fibc_crm.QRTZ_TRIGGERS’ doesn’t exist大小写不识别
2021-07-09 10:03:09 3204 1
原创 宝塔服务器环境部署
前提服务器宝塔安装完成https://blog.csdn.net/weixin_36328444/article/details/82357156https://zhuanlan.zhihu.com/p/66252249
2021-07-07 15:53:59 218
原创 Xshell安装宝塔Linux面板教程
标题输入Centos安装脚本命令:yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh确认是否要安装宝塔,输入y 回车等待安装完即可安装完成后,切记保存相关访问地址、账号以及密码...
2021-07-07 11:37:38 2733
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人