摘要:
1.下载mosquitto安装包https://mosquitto.org/download/2.安装其他依赖包 yum install gcc gcc-c++ libstdc++-devel yum install openssl-devel -y yum install c-ares-devel 阅读全文
摘要:
在运行vue项目时,执行npm install 报错,导致后续的执行报各种错误,根据报错,尝试了网上的各种办法,最后发现时网络问题下载失败导致,解决办法: 安装cnpm==>npm install cnpm -g –registry=https://registry.npm.taobao.org c 阅读全文
摘要:
sspringboot项目如果不想每次修改配置文件就要重新打包jar的话,可以进行以下配置进行打包 1.在resources下新建assembly文件夹package.xml 2.在pom中配置下面代码 然后在项目文件夹下shift+右键打开命令行窗口输入:mvn package -DskipTes 阅读全文
摘要:
select * from (select t.*,row_number() over(partition by 分组字段 order by rownum) rn from 表名 t where 条件语句) where rn= 分组中的第几条; 引用:https://blog.csdn.net/li 阅读全文
摘要:
oracle数据库备份命令exp 用户名/密码@orcl file=d:\xxxxxx.dmp owner=用户名 oracle数据库还原命令sqlplus conn / as sysdba drop user 用户名 cascade; create user 用户名 identified by 密 阅读全文
摘要:
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 阅读全文
摘要:
https://osdn.net/projects/tortoisesvn/storage/1.9.7/Language%20Packs/LanguagePack_1.9.7.27907-x64-zh_CN.msi/ 阅读全文
摘要:
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 阅读全文