spring boot配置ssl 1、申请免费SSL证书 免费ssl证书可以在你买域名的地方随便申请,申请之后下载jks格式的证书 下载解压之后会有两个东西 2、配置springboot中的application.yml或者application.properties配置文件 先把xxx.jks文件 ...
分类:
编程语言 时间:
2021-04-27 14:54:44
阅读次数:
0
MySQL spring.datasource.url=jdbc:mysql://localhost:3306/twitter_test?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8spring. ...
分类:
移动开发 时间:
2021-04-27 14:38:30
阅读次数:
0
logback简单实现对日志的保存和处理,且保存有效时间,7天, 配置文件 <?xml version="1.0" encoding="UTF-8"?> <configuration> <springProperty scope="context" name="loglevel" source="l ...
分类:
编程语言 时间:
2021-04-26 13:55:32
阅读次数:
0
什么是AOP AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业 ...
分类:
编程语言 时间:
2021-04-26 13:54:17
阅读次数:
0
1、注解的本质 在注解使用之前,Java各大框架(Spring,Hibernate等)使用xml来实现其松耦合方式的配置。但是随着项目越来越多,xml内容越来越复杂,维护成本越累越高。因此,业界提出采用一种标记式的高耦合配置方式,叫做注解。开发者可以在方法、类、字段属性等需要配置的地方进行注解。 关 ...
分类:
编程语言 时间:
2021-04-26 13:48:19
阅读次数:
0
废话不多说, 直接上代码 需要引入的pom依赖就不多说了, 无非jedis和redis相关的. yml中关于redis的配置文件 spring: # redis配置 redis: # redis数据库索引(默认为0) database: 1 host: localhost port: 111 # r ...
分类:
编程语言 时间:
2021-04-26 13:38:37
阅读次数:
0
from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from time import sleep driver=webdriver.Firefox() driv ...
分类:
其他好文 时间:
2021-04-26 13:30:27
阅读次数:
0
路径编写总结和url_pattern的编写方式 路径的编写 超链接 form表单的action属性 重定向 response.sendRedirect("/项目名/资源路径"); 转发 request.getRequestDispatcher("/资源路径").forword(request,res ...
分类:
编程语言 时间:
2021-04-24 13:57:14
阅读次数:
0
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency></dependencies> ...
分类:
其他好文 时间:
2021-04-24 13:41:04
阅读次数:
0
手动注册bean 此种方式注册的bean在调用时将由spring进行创建,相当于延迟加载bean import org.springframework.beans.BeansException;import org.springframework.beans.factory.support.Bean ...
分类:
编程语言 时间:
2021-04-24 13:12:04
阅读次数:
0