摘要: docker run p 6379:6379 d redis:latest redis server 阅读全文
posted @ 2020-05-12 13:59 e3tB8Wz7 阅读(1796) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the 阅读全文
posted @ 2020-02-18 08:10 e3tB8Wz7 阅读(2433) 评论(0) 推荐(0)
摘要: maven私服nexus 切换到安装目录 cd /usr/local/nexus/bin/ 执行启动程序 ./nexus start docker 启动 Redis docker run -p 6379:6379 -d redis:latest redis-server 阅读全文
posted @ 2019-11-05 11:07 e3tB8Wz7 阅读(260) 评论(0) 推荐(0)
摘要: 首先,在web.xml中加载配置文件 然后配置缓存管理器,开启注解支持等 然后在相应方法上添加@Cacheable、@CachePut、@CacheEvict等注解 阅读全文
posted @ 2019-09-18 09:11 e3tB8Wz7 阅读(976) 评论(0) 推荐(0)
摘要: # Obtain a suitable buffer length by partial file length function Get-BufferLength ([int]$partialFileLength) { [int]$MinBufferLength = 1MB # No need to consume great amount memory,initialize as 50M, y 阅读全文
posted @ 2019-09-12 11:18 e3tB8Wz7 阅读(2371) 评论(0) 推荐(0)
摘要: CREATE OR REPLACE PROCEDURE DIVIDE_BY_MON_DAY(START_DATE IN DATE, END_DATE IN DATE) IS BEGIN FOR D IN (SELECT START_DATE + (LEVEL - 1) CUR_DATE FROM DUAL CONNECT BY LEVEL <= END_DATE - START_DATE) LOO 阅读全文
posted @ 2019-08-16 09:15 e3tB8Wz7 阅读(1155) 评论(0) 推荐(0)
摘要: #! /bin/sh echo '####################开始自动部署####################' path=`pwd` #当前路径 tomcatPath=apache-tomcat-8.5.15 #指定tomcat文件目录名称 cd ../$tomcatPath/bin #进入tomcat的bin目录 PID=$(ps -fu `whoami`|grep tomc... 阅读全文
posted @ 2019-05-27 09:04 e3tB8Wz7 阅读(495) 评论(0) 推荐(0)
摘要: :: git-pull-all.bat @ECHO OFF SETLOCAL ENABLEEXTENSIONS SET MYGIT="C:\Program Files\Git\bin\git.exe" FOR /D %%X IN (*) DO ( IF EXIST "%%X\.git\" ( CD 阅读全文
posted @ 2019-05-26 08:57 e3tB8Wz7 阅读(3550) 评论(0) 推荐(0)
摘要: /** * @Description: 将模板导出为Excel * @author: * @date: 2018年3月22日 下午8:57:24 * @param pagename 模板文件名称 * @param params 导出参数 * @param javaBean 报表数据源实体类 * @param request 请求对象 * @param response 响应... 阅读全文
posted @ 2019-05-06 17:59 e3tB8Wz7 阅读(2563) 评论(0) 推荐(0)
摘要: 1 package quicksort; 2 3 import org.junit.Test; 4 5 import java.util.Arrays; 6 7 public class QuickSort { 8 9 @Test 10 public void setUp() throws Exception { 11 int[] arr... 阅读全文
posted @ 2019-04-04 21:47 e3tB8Wz7 阅读(366) 评论(0) 推荐(0)