摘要: 1.下载mosquitto安装包https://mosquitto.org/download/2.安装其他依赖包 yum install gcc gcc-c++ libstdc++-devel yum install openssl-devel -y yum install c-ares-devel 阅读全文
posted @ 2020-03-31 09:25 与君共行之 阅读(1548) 评论(0) 推荐(0) 编辑
摘要: 在运行vue项目时,执行npm install 报错,导致后续的执行报各种错误,根据报错,尝试了网上的各种办法,最后发现时网络问题下载失败导致,解决办法: 安装cnpm==>npm install cnpm -g –registry=https://registry.npm.taobao.org c 阅读全文
posted @ 2020-03-08 10:23 与君共行之 阅读(1311) 评论(0) 推荐(0) 编辑
摘要: sspringboot项目如果不想每次修改配置文件就要重新打包jar的话,可以进行以下配置进行打包 1.在resources下新建assembly文件夹package.xml 2.在pom中配置下面代码 然后在项目文件夹下shift+右键打开命令行窗口输入:mvn package -DskipTes 阅读全文
posted @ 2019-09-11 12:21 与君共行之 阅读(9089) 评论(0) 推荐(0) 编辑
摘要: select * from (select t.*,row_number() over(partition by 分组字段 order by rownum) rn from 表名 t where 条件语句) where rn= 分组中的第几条; 引用:https://blog.csdn.net/li 阅读全文
posted @ 2019-09-06 16:48 与君共行之 阅读(872) 评论(0) 推荐(0) 编辑
摘要: oracle数据库备份命令exp 用户名/密码@orcl file=d:\xxxxxx.dmp owner=用户名 oracle数据库还原命令sqlplus conn / as sysdba drop user 用户名 cascade; create user 用户名 identified by 密 阅读全文
posted @ 2019-09-06 09:19 与君共行之 阅读(6939) 评论(0) 推荐(0) 编辑
摘要: upstream tomcat_server{ server 127.0.0.1:8087; server 192.168.149.117:8088; } server { listen 8088; server_name localhost; #charset koi8-r; #access_lo 阅读全文
posted @ 2019-05-24 12:09 与君共行之 阅读(10192) 评论(0) 推荐(0) 编辑
摘要: https://osdn.net/projects/tortoisesvn/storage/1.9.7/Language%20Packs/LanguagePack_1.9.7.27907-x64-zh_CN.msi/ 阅读全文
posted @ 2018-11-01 16:44 与君共行之 阅读(2356) 评论(0) 推荐(0) 编辑
摘要: cas-client-3.2.1-release.zip 》 https://github.com/apereo/cas/releases/download/v3.5.2/cas-server-3.5.2-release.zip https://github.com/apereo/cas/relea 阅读全文
posted @ 2018-06-06 09:52 与君共行之 阅读(2992) 评论(6) 推荐(0) 编辑
摘要: Window->Preferences->General ->Content Type->Text->JSP 最下面设置为UTF-8 Window->Preferences->General->Workspace 面板Text file encoding 选择UTF-8 Window->Prefer 阅读全文
posted @ 2018-06-05 13:45 与君共行之 阅读(122) 评论(0) 推荐(0) 编辑
摘要: return new ModelAndView(new RedirectView("http://www.baidu.com")); 阅读全文
posted @ 2018-06-05 11:32 与君共行之 阅读(2439) 评论(0) 推荐(1) 编辑