上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 32 下一页
摘要: 一、conda创建新的开发环境 C:\Users\yc>conda create --name celery_django python=3.8 C:\Users\yc>conda info -e py38 * D:\ProgramData\Anaconda3\envs\py38 celery_dj 阅读全文
posted @ 2024-01-18 18:15 万笑佛 阅读(152) 评论(0) 推荐(0) 编辑
摘要: python生成word文档,感觉比java生成方便很多 下面看看步骤 1、环境 pip install python-docx 2、准备一张需要插入word中的图片monty-truth.png 3、一段代码 from docx import Document from docx.shared i 阅读全文
posted @ 2023-12-27 18:14 万笑佛 阅读(91) 评论(0) 推荐(0) 编辑
摘要: celery本文就不介绍了 感兴趣的看https://c.biancheng.net/view/s0j4eth.html 这个人家介绍的挺好的 1. 安装部署 Celery 涉及任务队列和结果存储, 我们使用 Redis,做例子前要先安装好redis。 我们可以通过命令行方式下载和安装指定版本: # 阅读全文
posted @ 2023-12-18 16:31 万笑佛 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 完成Springboot配置发件邮箱,自动给其他邮箱发送邮件功能 一、创建springboot基础项目,引入依赖 <!-- Spring Boot 邮件依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactI 阅读全文
posted @ 2023-11-23 17:08 万笑佛 阅读(265) 评论(0) 推荐(1) 编辑
摘要: 如果你想在 Spring Boot 启动后异步方式启动一个方法,你可以使用 Spring Framework 的异步支持和 @Async 注解来实现。以下是如何在 Spring Boot 应用程序中异步方式启动一个方法的步骤: 配置异步支持: 首先,在应用程序的主类上添加 @EnableAsync  阅读全文
posted @ 2023-10-11 13:02 万笑佛 阅读(148) 评论(0) 推荐(0) 编辑
摘要: class Test(): cursor = connection.cursor() data_to_insert = [] sql = "INSERT INTO test_t (id, name ) VALUES" """ (%s, %s) """ d = ('1', "apple") data_ 阅读全文
posted @ 2023-09-19 18:02 万笑佛 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 数据有Test表,表里有id,name,ip_address,last_time四个字段 通常查询写法,返回结果会把id,name,ip_address,last_time四个字段都返回 public List selectList(Test test) { List list = testMapp 阅读全文
posted @ 2023-08-02 17:50 万笑佛 阅读(1190) 评论(0) 推荐(0) 编辑
摘要: 开发有时需要动态创建表,创建完成后需要动态选择model对应的表,该需求如何实现 1、model层 TestBlock为了动态创建表、getBlockModel为了动态选择表 from django.db import models # Create your models here. class 阅读全文
posted @ 2023-08-01 19:44 万笑佛 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 为了提高数据处理效率,大量数据需要插入数据时可以采用批量数据插入的策略提高数据插入的效率。 如下是实现方法 1、代码结构 2、实体类 package little.tiger.one.application.testblockt.domain; import com.baomidou.mybatis 阅读全文
posted @ 2023-08-01 12:15 万笑佛 阅读(1692) 评论(0) 推荐(0) 编辑
摘要: 防火墙对centos6和7版本操作不同所以第一步要看操作系统的版本 1、查看操作系统的版本 cat /etc/redhat-release 2、 6版本的相关操作 iptables防火墙启动、重启、停止 service iptables start service iptables restart 阅读全文
posted @ 2023-07-10 13:51 万笑佛 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 32 下一页