Easter79 Easter79
3年前
spring使用jetty+jndi配置druid数据源
maven项目pom.xml配置1、配置druid的jar依赖:<dependency<groupIdcom.alibaba</groupId<artifactIddruid</artifac
Stella981 Stella981
3年前
Jenkins入门(一)安装Jenkins(Linux环境centos)
1\.下载Jenkins这里选择清华大学的Jenkins镜像源站下载稳定2.249.3版本(war包)https://mirrors.tuna.tsinghua.edu.cn/jenkins/warstable/2.249.3/(https://www.oschina.net/action/GoToLink?ur
Stella981 Stella981
3年前
BeetlSQL 3.2.10 发布,Query功能增强
完善了Sql类型说明修复Query类在使用无KeyHandler的时候的Bug增强了Query类的page查询方法,允许使用PageRequest接口<dependency<groupIdcom.ibeetl</groupId<artifactIdbeetlsql</artifact
Stella981 Stella981
3年前
Flink编程练习
\TOC\1.wordcount利用socket作为数据源,对输入的每行数据进行单词计数。计算频率为processtime的每10秒一次,结果输出到terminal。objectSocketWindowWordCount{defmain(args:ArrayString):U
Wesley13 Wesley13
3年前
Ubuntu安装NGINX+PHP
禁止IP6协议vi/etc/modprobe.d/blacklist.conf底部追加blacklistipv6修改软件仓库源mv/etc/apt/sources.list/etc/apt/sources.list.bakvi/etc/apt/sources.listUbuntu14
Wesley13 Wesley13
3年前
Ubuntu16.04安装docker
1.更换镜像(1)备份原来的源sudocp/etc/apt/sources.list/etc/apt/sources.list.bakcup(2)编辑sources.listssudovim/etc/apt.sources.list添加如下内容:debhttp://mirrors.aliyun.com/ubuntu
Stella981 Stella981
3年前
MyBatis初级实战之四:druid多数据源
欢迎访问我的GitHubhttps://github.com/zq2599/blog\_demos(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fzq2599%2Fblog_demos)内容:所有原创文章分类汇总及配套源码,涉及Java、Do
Stella981 Stella981
3年前
Lua 字符串查找函数 string.find(s, pattern [, init [, plain]] )【转】
函数原型string.find(s,pattern\,init\,plain\\)s:源字符串pattern:待搜索模式串init:可选,起始位置plain:我没用过①子串匹配:print(string.find("haha",'ah'))输出23注意: