上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 74 下一页
摘要: 报错信息: 错误代码: <select id="selectSubList" resultMap="resultCtsProduct"> select t1.*,t2.* from b_cts_product t1 inner join b_product t2 on t1.subtypeno=t2 阅读全文
posted @ 2021-12-20 09:26 周文豪 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 报错如下: 错误sql SELECT b.batchno, b.subtypeno, b.entity_id, b.package_spec, b.package_ratio, b.produce_date, b.validate_date, a.PACKLAYER, a.CURCODE, bc.p 阅读全文
posted @ 2021-12-20 09:25 周文豪 阅读(2673) 评论(0) 推荐(0) 编辑
摘要: 一、spring JDBC Spring框架对JDBC的简单封装。提供了一个JDBCTemplate对象简化JDBC的开发。 步骤: 1、 添加依赖 2、创建JdbcTemplate对象。依赖于数据源DataSource * JdbcTemplate template = new JdbcTempl 阅读全文
posted @ 2021-12-19 22:23 周文豪 阅读(2641) 评论(0) 推荐(0) 编辑
摘要: 在调接口时,会将请求体进行加密,代码如下: public class DataEncrypt2Test { public static void main(String[] args) throws Exception { String pubKey = "省略不写";// 生产批次 StringB 阅读全文
posted @ 2021-12-18 14:36 周文豪 阅读(6485) 评论(0) 推荐(0) 编辑
摘要: 我们将请求体加密后,访问后台,在获取applyData时报错。 原代码如下: public class DataEncrypt2Test { public static void main(String[] args) throws Exception { String pubKey = "省略不写 阅读全文
posted @ 2021-12-17 19:25 周文豪 阅读(4556) 评论(0) 推荐(0) 编辑
摘要: 原因分析:常量字符串的长度不能长于65535 - 1字节; 由于图片通过接口传递,图片转为base64编码后,字符串很大,故yreport的值很大,有360800个字符。 原代码: public class DataEncrypt2Test { public static void main(Str 阅读全文
posted @ 2021-12-17 19:13 周文豪 阅读(2615) 评论(0) 推荐(0) 编辑
摘要: 在cmd中通过ipconfig获取的ip为局域网的ip 要想获取外网的IP:在百度中输入IP即可看到 注意: 1、公司的猫的IP为外网的IP,公司内部所有电脑的外网IP都是一样的,即猫的IP。要想访问内网的IP,需要内网穿透。 2、如果公司中牵的网线为动态的IP,那么IP就不是固定的,每次重启猫,I 阅读全文
posted @ 2021-12-17 11:12 周文豪 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 网盘地址: 链接:https://pan.baidu.com/s/1jabNfOqGcKfPXesREdgfgw 提取码:0nkc --来自百度网盘超级会员V5的分享 阅读全文
posted @ 2021-12-17 09:58 周文豪 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1、将前端请求的后台的路径改为后台tomcat的端口,由于我的后台部署在tomcat中,tomcat的端口为8081,故: // 创建axios实例 const service = axios.create({ baseURL: 'http://localhost:8081/api', timeou 阅读全文
posted @ 2021-12-15 22:17 周文豪 阅读(2264) 评论(0) 推荐(0) 编辑
摘要: 一、目录操作 常用目录 /root: 该目录为系统管理员,也称作超级权限者的用户主目录。/home: 用户的主目录,在Linux中,每个用户都有一个自己的目录,一般该目录名是以用户的账号命名的。/etc: 这个目录用来存放所有的系统管理所需要的配置文件和子目录。/usr: 这是一个非常重要的目录,存 阅读全文
posted @ 2021-12-15 17:14 周文豪 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 74 下一页