摘要:
import org.springframework.web.bind.annotation.*; import org.springframework.beans.factory.annotation.Autowired; import java.util.List; @RestControlle 阅读全文
摘要:
/* * Copyright (c) 2011-2022, baomidou (jobob@qq.com). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file 阅读全文
摘要:
public void excuteSingMul() throws InterruptedException { long start = System.currentTimeMillis(); // 定义每批处理的记录数 int batchSize = 5000; // 获取总记录数 int t 阅读全文
摘要:
package org.example; import com.alibaba.druid.pool.DruidDataSource; import java.sql.*; import java.util.ArrayList; import java.util.List; import java. 阅读全文
摘要:
这里要注意的是当a4出栈后,往后只有一种顺序 a1先出栈 a4 1种 C(2,1)*C(2,1) =4种 这里第二个出栈可以是a2,a3 a2先出栈 同理a1 5种 a3先出栈 第二位只能是a2,a4 第二位为a2有C(2,1)种,a4有1种 3种 a4先出栈 1种 一共14种 阅读全文
摘要:
最后结果:15瓶 总结:要用while循环把瓶子盖子消耗完,单步调试发现,不够15瓶的情况都是没有消耗完瓶子盖子。 下面是递归方式: 阅读全文
摘要:
动态代理:在不修改源码的基础上,对原有方法的增强。 准备接口: Iproducer.interface: public interface Iproducer { public double saleProducer(double money); } 接口动态代理 producer.java pub 阅读全文
摘要:
public class JdbcDemo1 { public static void main(String[] args) throws SQLException { //1.注册驱动 //Class.forName("com.mysql.jdbc.Driver") //上面的方式只会没有jar 阅读全文
摘要:
配置文件jedis.properties 类JedisUtils.java 测试类test.java 阅读全文
摘要:
注意:1.设置的时间字符串特殊字符如空格在添加到cookie前要进行URL编码,获取打印前要进行解码。 2.req获取的cookie是客户端带过来的,respond回去的是更改后的,要把客户端带来的和相应回去的cookie区分开。 阅读全文