logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

golang 实现数组list去重

func RemoveRepeatedElement(arr []string) (newArr []string) {newArr = make([]string, 0)for i := 0; i < len(arr); i++ {repeat := falsefor j := i + 1; j < len(arr); j++ {if arr[i] == arr[j] {repeat

nginx配置 ssl证书

购买证书阿里云免费购买个人免费版https://common-buy.aliyun.com/?spm=5176.2020520163.cas.3.19fd56a7ZknCC3&commodityCode=cas#/buy在SSL证书页面,单击已签发标签,定位到需要下载的证书并单击证书卡片右下角的下载。将下载的证书上传到 nginx 服务器得到两个文件1. 证书文件:...

#nginx
nginx配置反向代理

反向代理 实例一在nginx 配置文件中server模块配置;主要实现作用为通过反向代理访问到tomcat服务其中的内容在浏览器中输入192.168.1.20通过nginx 代理到tomcatserver{listen 80;server_name 192.168.1.20 # 可以是IP地址也可以是域名locatio /{root html; # 项目路径 如/...

#nginx
springboot设置RestTemplate的超时时间

配置方式@Configurationpublic class RestTemplateConfig{@Beanpublic RestTemplate customRestTemplate(){HttpComponentsClientHttpRequestFactory httpRequestFactory = new HttpComponentsClien...

springboot 使用RestTemplate文件下载

@Testpublic void downloadTest() throws IOException {//https://smallpdf.com/shared#st=a7c826e2-c8a0-4c55-9596-e6bfa47fcad3&fn=1-%E5%B7%B2%E8%BD%AC%E6%A1%A3.pdf&ct=1595830512800&tl=jpg&r

mybatis分页工具类

工具类封装package com.example.page.common;import lombok.Data;@Datapublic class Page {private int pageNum;private int pageSize;private long total;private int pages;public Pag...

#mysql#java#mybatis
springboot ApplicationContextHolder工具类获取bean

使用ApplicationContextHolder 工具类 在spring容器中获取bean新建ApplicationContextHolder 工具类import org.springframework.beans.BeansException;import org.springframework.context.ApplicationContext;import org.spring...

到底了