MIUMIUBLING

导航

2022年9月8日 #

Linux中JSON安装及使用

摘要: 1.官网下载json-cpp,可以去sourceforge或github https://sourceforge.net/projects/jsoncpp/files/ 这里下载的是jsoncpp-src-0.5.0.tar.gz 2.下载scons http://sourceforge.net/p 阅读全文

posted @ 2022-09-08 14:50 MIUMIUBLING 阅读(2348) 评论(0) 推荐(0) 编辑

2022年8月9日 #

使用visual studio 2019进行Linux系统编程

摘要: 使用visual studio 2019进行Linux系统编程 首先打开: 修改、安装Linux工具: 新建Linux工程、远程连接Linux服务器、配置编译器: 项目属性配置: Ubuntu系统安装工具: 目标 Linux 系统必须安装 openssh-server、g++、gdb 和 make 阅读全文

posted @ 2022-08-09 15:18 MIUMIUBLING 阅读(1143) 评论(0) 推荐(0) 编辑

为什么要用make?为什么要用cmake?Linux源码编译的一般流程?

摘要: 为什么要用make?为什么要用cmake?Linux源码编译的一般流程? 前言:对于C/C++以及Linux用户来说,编译器,make,cmake这几个工具是天天要接触到的,那到底为什么要使用呢?本文做一个小小的总结。 一、编译器gcc与g++gcc是GNU Compiler Collection( 阅读全文

posted @ 2022-08-09 15:14 MIUMIUBLING 阅读(457) 评论(0) 推荐(0) 编辑

2022年6月28日 #

Virtualbox Linux 主机与虚拟机复制粘贴

摘要: https://blog.csdn.net/OrdinaryMatthew/article/details/124040107?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefa 阅读全文

posted @ 2022-06-28 15:36 MIUMIUBLING 阅读(589) 评论(0) 推荐(0) 编辑

解决 VirtualBox里Ubuntu的共享文件夹无法访问的问题

摘要: 解决 VirtualBox里Ubuntu的共享文件夹无法访问的问题 出现如下类似提示:You do not have the permissions necessary to view the contents of ‘shared_folder’ [Tips]:‘shared_folder’是共享 阅读全文

posted @ 2022-06-28 15:36 MIUMIUBLING 阅读(269) 评论(0) 推荐(0) 编辑

2019年11月27日 #

postman 中get传参数

摘要: mybatis中: @RequestMapping(value = "/detail/{id}", method = RequestMethod.GET, produces = "application/json") postman: http://localhost:8080/platform/d 阅读全文

posted @ 2019-11-27 10:27 MIUMIUBLING 阅读(984) 评论(0) 推荐(0) 编辑

2019年11月26日 #

MySQL单表多字段模糊查询

摘要: MySQL单表多字段模糊查询可以通过下面这个SQL查询实现 select * from 表名 where concat(字段1,字段2,) like '%关键字%' 阅读全文

posted @ 2019-11-26 14:27 MIUMIUBLING 阅读(243) 评论(0) 推荐(0) 编辑

2019年11月21日 #

SQL 分组后获取其中一个字段最大值的整条记录

摘要: 方法一:(效率最高)select * from test as a where typeindex = (select max(b.typeindex) from test as b where a.type = b.type );方法二:(效率次之)select a.* from test a,( 阅读全文

posted @ 2019-11-21 10:28 MIUMIUBLING 阅读(936) 评论(0) 推荐(0) 编辑

2019年11月6日 #

GET传参数方式

摘要: controller:/getDetail/{id} /getDetail?id1234567 /getDetail?id=id1234567 阅读全文

posted @ 2019-11-06 13:57 MIUMIUBLING 阅读(1126) 评论(0) 推荐(0) 编辑

2019年10月22日 #

springmvc资源文件访问不到,undefined,jsp引用js文件目录

摘要: 资源访问失败: 该模块下springmvc.xml文件中添加配置: <mvc:resources mapping="/js/**" location="/js/"/> undefined: jsp 中:dataType:"json", 与controller中out.write(jsonString 阅读全文

posted @ 2019-10-22 16:33 MIUMIUBLING 阅读(280) 评论(0) 推荐(0) 编辑