微信
摘要:<1>内网地址映射成外网地址: ngrok http 8080
阅读全文
微信开发
摘要:<1>订阅号:只能发消息;服务号:发消息,导航菜单;企业号:发消息,导航菜单,应用中心,通讯录
阅读全文
sqlserver存取过程游标
摘要:ALTER proc [dbo].[common_proc_temp2] as begin declare @id varchar(50); declare @cbcontractid varchar(50); declare @xh int ; declare owner_03_cursor cu
阅读全文
sqlserver存取过程-游标
摘要:ALTER proc [dbo].[common_proc_temp2] as begin declare @id varchar(50); declare @cbcontractid varchar(50); declare @xh int ; declare owner_03_cursor cu
阅读全文
sqlserver创建,调用 带返回值存取过程
摘要:<1>create: ALTER proc [dbo].[common_proc] @sql1 varchar(5000), @sql2 varchar(5000) OUTPUT as begin set @sql2=@sql1+''; end; <2>call: exec [dbo].[commo
阅读全文
cenos 7常用操作
摘要:centos 虚拟机 <一>设置ip <1>虚拟机配置ip 虚拟机->设置->网络适配器->设置NAT模式 <2>编辑->虚拟网络编辑器,对NAT模式设置子网地址和网关 <3>查看ip 命令: ip addr <4>命令自动补全:按 tab键 <二>命令: cd / 进入根目录 ls 查看 目录下的
阅读全文
spring+junit单元测试
摘要:<1>读取文件: 配置文件在classes下:locations = {"classpath*:/spring/applicationContext.xml"} 配置文件在web-inf下:locations = {"file:web/WEB-INF/applicationContext.xml"}
阅读全文