<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:
其他好文 时间:
2020-12-23 12:34:30
阅读次数:
0
前言 我用的是最原始的Spring MVC使用方式,基于XML文件配置。 项目结构 导入依赖: **spring-webmvc:**https://mvnrepository.com/artifact/org.springframework/spring-webmvc **javax.servlet ...
分类:
编程语言 时间:
2020-12-23 11:40:31
阅读次数:
0
Spring Boot的默认不支持yaml文件,需要自定义一个factory import org.springframework.beans.factory.config.YamlPropertiesFactoryBean; import org.springframework.core.env. ...
分类:
编程语言 时间:
2020-12-21 12:01:39
阅读次数:
0
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfi ...
分类:
编程语言 时间:
2020-12-21 11:04:36
阅读次数:
0
##在子工程添加devtools的依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <opt ...
分类:
其他好文 时间:
2020-12-19 12:44:19
阅读次数:
2
集成es 引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId> </dependency> 配置 在p ...
分类:
编程语言 时间:
2020-12-18 12:50:29
阅读次数:
2
pom.xml <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.5.RELEASE</version> <rel ...
分类:
编程语言 时间:
2020-12-18 12:33:50
阅读次数:
1
idea中springboot热部署(无需重启项目) 1.在pom.xml文件中导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <o ...
分类:
编程语言 时间:
2020-12-17 12:53:11
阅读次数:
1
1.引入redis的jar包<!--配置2 使用 jedis 作客户端驱动--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifact ...
分类:
编程语言 时间:
2020-12-14 13:22:36
阅读次数:
5
通过切面编程实现系统请求操作日志记录 1、引入依赖包 <!-- aop 依赖包 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> ...
分类:
编程语言 时间:
2020-12-14 13:07:12
阅读次数:
5