摘要:
添加配置类 /** * 表示取消数据源的自动配置 */ @Slf4j public class ConfigApplication { public static void main(String[] args){SpringApplication.run(ConfigApplication.cla 阅读全文
摘要:
pom.xml <plugin> <!--把jar包复制到指定的位置--> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>package</phase> <conf 阅读全文
该文被密码保护。 阅读全文
该文被密码保护。 阅读全文
该文被密码保护。 阅读全文
摘要:
1.map转json Map<String, Object> map = new HashMap<String, Object>(); map.put("a", "a"); map.put("b", "123"); JSONObject json = new JSONObject(map); 2.m 阅读全文
摘要:
创建定时器 import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; import java.text.SimpleDateFormat; 阅读全文
该文被密码保护。 阅读全文
摘要:
pom.xml <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.10</version> </dependency> logback-spring.xml 阅读全文
摘要:
pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>2.0.4.RELEASE</versi 阅读全文
摘要:
命令行模式 ::命令行启动 redis-server.exe redis.windows.conf 系统服务模式 ::安装服务 redis-server.exe --service-install redis.windows6379.conf --service-name redis6379 --p 阅读全文
该文被密码保护。 阅读全文
摘要:
如何实现 首先拦截器是属于web这块的,那我们需要引入springboot web模块,具体版本在parent中 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web< 阅读全文
摘要:
1、最基础注解(spring-context包下的org.springframework.stereotype) 1.1、@Controller @Service @Repository @Configuration @Component (1)解释 用于标注各个层级的注解,注入到spring容器管 阅读全文
摘要:
添加注解@EnableScheduling开启定时器总开关 import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableSche 阅读全文