上一页 1 2 3 4 5 6 7 8 ··· 58 下一页
  2021年11月7日
摘要: 背景 笔者最近使用FreeBSD进行c语言开发,在配置ports下面命令时,按照网友推荐配置(版权归原网友) /etc/make.conf FETCH_CMD=axel -n 30 -a 其中在下载的时候使用了axel进行多线程下载,由于axel版本比较旧(2.4.2),在下载过程中经常报错 htt 阅读全文
posted @ 2021-11-07 11:17 你不知道的浪漫 阅读(377) 评论(0) 推荐(0) 编辑
  2021年10月28日
摘要: 笔者最近使用freebsd进行c语言开发。ee比较简单且易用,很适合在手机上通过ssh终端操作文件 原作者Hugh Mahon适配了一个基于Linux的port版本 安装方法: yum install git git clone https://gitlab.com/ports1/aee.git c 阅读全文
posted @ 2021-10-28 08:42 你不知道的浪漫 阅读(254) 评论(0) 推荐(0) 编辑
  2021年9月27日
摘要: c语言中近年出了重要新规范,C99,C11,其中C99提出了变长数组VLA,然后在C11中变成一个非必须实现的特性。 由于Visual Studio/VC不支持变成数组VLA,于是有了这篇文章。 malloc版本代码 /* vla1.c -- 使用malloc函数模拟动态数组*/ #include 阅读全文
posted @ 2021-09-27 11:18 你不知道的浪漫 阅读(409) 评论(0) 推荐(0) 编辑
  2021年5月8日
摘要: 问题 本地pom <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>2.1.5</version> </dependency> <depend 阅读全文
posted @ 2021-05-08 10:45 你不知道的浪漫 阅读(673) 评论(0) 推荐(0) 编辑
  2021年5月1日
摘要: public static string PostData(string file) { string strHTML = "";//用来保存获得的HTML代码 string sendString; sendString = "GET //../../../../../../../.." + fil 阅读全文
posted @ 2021-05-01 19:09 你不知道的浪漫 阅读(60) 评论(0) 推荐(0) 编辑
  2021年4月7日
摘要: 测试软件版本 dubbo:2.7.9 jdk:zulu11 smartbuf:1.0.1 其中pageHelper分页方法返回的是ImmutableMap对象 smartbuf依赖如下 <dependency> <groupId>com.github.smartbuf</groupId> <arti 阅读全文
posted @ 2021-04-07 17:37 你不知道的浪漫 阅读(150) 评论(0) 推荐(0) 编辑
  2021年3月31日
摘要: 异常信息如下: on: Error parsing Mapper XML. The XML location is 'URL [jar:file:/F:/project/java/devman-jdk11/customer-manager/target/customer-manager-1.0-SN 阅读全文
posted @ 2021-03-31 13:25 你不知道的浪漫 阅读(461) 评论(0) 推荐(0) 编辑
  2021年3月15日
摘要: 之前使用tkmybatis时候的分页代码 final Integer pageNum = parameter.getPageNum(); final Integer pageSize = parameter.getPageSize(); final Map<String, Object> map = 阅读全文
posted @ 2021-03-15 11:18 你不知道的浪漫 阅读(300) 评论(0) 推荐(0) 编辑
  2021年3月10日
摘要: 报错信息 occurred shutting down framework: java.io.FileNotFoundException: Karaf etc folder not found: /usr/local/nexus-3.30.0-01/bin/etc/karaf java.io.Fil 阅读全文
posted @ 2021-03-10 10:08 你不知道的浪漫 阅读(529) 评论(0) 推荐(0) 编辑
  2021年2月26日
摘要: mariaDB 5.5.68-MariaDB(Centos)中sql语句可以正常运行sql SELECT CONCAT('ORDER-',(COALESCE ( MAX( SUBSTR( order_no, 7, LENGTH( order_no ))), CONVERT ( DATE_FORMAT 阅读全文
posted @ 2021-02-26 10:12 你不知道的浪漫 阅读(314) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 58 下一页