- 博客(11)
- 收藏
- 关注
原创 Spring Data JPA + Pgsql 实现多条件搜索查询
目录目标: web上能根据多个输入条件查询出正确的数据结构:Spring Data JPA + Pgsql +JS实现方式:用JpaSpecificationExecutor 接口实现代码:表HTML PartJS PartDao PartService Part结果展示:目标: web上能根据多个输入条件查询出正确的数据结构:Spring Data JPA + Pgsql +JS实现方式:用JpaSpecificationExecuto...
2020-07-13 09:44:54
1212
原创 svg 下aminate image
需求:人员的头像可以按轨迹运动,并将运动轨迹逐渐动态显示实现:CSS3 animation的支持和svg 的animateMotioncss:整个运动轨迹30s完成附:若不添加"linear" 属性,当path路径重复时,动态路径不会重复,这样会造成图像运动的路径和path运动路径不同。若要按照原来的所有路径运动并保持图像和path路径一致,则必须加此属性。 path{...
2020-01-04 21:50:27
245
原创 jqwidgets splitter把页面水平分割
需求:将页面水平分割成三部分,比例分别是50%, 25%, 25%设计步骤:第一步:下载jqwidgethttps://www.jqwidgets.com/download/第二步:将需要的js和css文件(jquery.min.js,jqxcore.js, jqxsplitter.js, jqxbuttons.js, jqxscrollbar.js, jqxpanel.js,d...
2019-03-21 15:58:41
1096
原创 不能自动显示滚动条问题
问题?当子div 中的数据或图片大于了父div中设置的大小时,子div中的数据不能全部显示例如: <div class="splitter-panel" > --> 父div <div id="jstree-ajax"></div> --&...
2019-03-21 15:32:11
238
原创 jqwidgets splitter 中添加slickgrid后,grid无法显示问题
我的应用入下:1 引用jqwidgets生成一个splitter,把窗口分成三部分2 在最上面的部分加入一个grid代码:html 部分: <div id='jqxWidget'> <div id="topSplitter"> <div class="splitter-panel"> ...
2019-03-21 15:19:37
319
原创 Windows中如何用Gradle构建kotlin项目build jar包,并执行kotlin jar
一,如何用Interllij IDEA 来构建基于Gradle的kotlin项目?首先,打开Interllij IDEA, 选择File-->New-->Project, 在“New project” 窗口左侧选择Gradle,右侧选择kotlin,如下图所示:点击Next按钮填写项目相关信息,项目名为example1(可自定义), 如下图所示:接着一直点击“Next”...
2018-09-23 13:24:09
2782
原创 在JAVA怎样实现每间隔一段时间执行程序
当需要每间隔一段时间执行一段程序的时,JAVA中可以这样实现:public void run() { while (true) { try { xxxxxxxxxxxxxxxxx; // 需要执行的程序 sleep(1000L); //间隔1秒执行一次! } catch (Exception e) { System...
2018-05-18 13:47:36
12560
原创 How to create rhel docker base image
1. Create base image through redhat release versionPrecondition:1. host with docker running2. Image version should the same as host. eg: if host is rhel7, the image also should be rhel7 Steps:1 Config...
2018-05-11 16:39:58
502
原创 Basic operation of Redhat Atomic
1. Install docker on RHEL7.xStep1. Register to Candlepin and auto subscribe pool# subscription-manager register --username=qa@redhat.com --password=xxxxx# subcsription-manager subscribe --autoStep2: S...
2018-05-11 16:37:51
963
原创 How to deploy CI test env (Jenkins+Docker)
1. Deploy jenkins-master(1). Add the Jenkins repository to the yum repos, and install Jenkins[root@jenkinsmaster ~]# wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenk...
2018-05-11 16:34:39
1856
原创 Windows上如何下载并在Maven上使用log4j
下载log4j的jar包,我下载的apache-log4j-2.X-bin.zip。 将下载解压后的 log4j.jar , log4j-core-2XXX.jar, log4j-api-2XXX.jar拷贝到 Maven项目-->jars目录下 在Maven中将step2中的三个jar包添加到项目中。右键单击maven项目-->Open Module setting, 点...
2018-03-26 11:16:28
995
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人