2020年10月记录

1.springboot 消息头设置要写在 消息体传输之前。可能和http报文先后顺序有关。

2.java画图常用api。

    public static String ImageBuilder(String code,String path) {
        //得到图片缓冲区
        FileInputStream fileInputStream = null;
        try {
            BufferedImage bi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
            File file = new File(path);
            if(!file.exists()){
                throw  new RuntimeException("二维码存放地址有误");
            }
            fileInputStream = new FileInputStream(file);
            BufferedImage image2 = ImageIO.read(fileInputStream);
            //得到它的绘制环境(这张图片的笔)
            Graphics2D g2 = (Graphics2D) bi.getGraphics();
            g2.fillRect(0, 0, width, height);
            //设置颜色
            g2.setColor(Color.WHITE);
            // 将图片大小设置为大约4cm*4cm 具体根据纸张大小设定
            g2.drawImage(image2, 10, 85, 135, 135,null);
            g2.drawRect(0, 0, width - 1, height - 1);
            //设置字体:字体、字号、大小
            g2.setFont(new Font("黑体", Font.BOLD, 26));
            //设置背景颜色
            g2.setColor(Color.BLACK);
            //向图片上写字符串
            g2.drawString("东久", 15, 30);
            g2.setFont(new Font("黑体", Font.BOLD, 20));
            g2.drawString("·", 65, 28);
            g2.setFont(new Font("黑体", Font.BOLD, 26));
            g2.drawString("佳能", 83, 30);
            g2.setFont(new Font("黑体", Font.BOLD, 18));
            g2.drawString("iR-ADV C3525", 15, 60);
            g2.setFont(new Font("黑体", Font.ITALIC, 14));
            g2.drawString(code, 30, 80);
            // 图片上传后的路径
            String savePath = "F:/a.png";
            ImageIO.write(bi, "JPEG", new FileOutputStream(savePath));
            return savePath;
        }catch (Exception e){
            log.error("生成图片错误",e);
            throw new RuntimeException("生成图片错误",e);
        }finally {
            if(fileInputStream != null){
                try {
                    fileInputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

3.切面匹配表达式。

https://www.cnblogs.com/songshuiyang/p/7857515.html

 

4.springboot aop。

https://www.cnblogs.com/huanzi-qch/p/9916478.html

 

5.获取注解的属性值

https://blog.youkuaiyun.com/HaHa_Sir/article/details/81331437

 

6.swagger @ApiModel(value = "账号更改密码信息")的value不能一样

否则显示再页面的json示例也一样

 

7.启动XxlJobAdminApplication,XxlJobExecutorApplication ,在http://localhost:8080/xxl-job-admin配置执行器,执行任务。

 

8.navicate连接oracle报错

https://www.cnblogs.com/bingdaocaihong/p/10268861.html

 

9.oracle不加引号转换成大写

https://www.cnblogs.com/fuchen/p/5680478.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值