摘要:
一:Swagger2 的 maven 依赖 <!-- swagger2 --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</versi 阅读全文
摘要:
一:环境配置: Maven3+ Jdk1.8+ Mysql5.7+ 二、快速入门 2.1下载项目 下载项目源码并解压,获取 “调度数据库初始化SQL脚本” 并执行即可。 “调度数据库初始化SQL脚本” 位置为: /xxl-job/doc/db/tables_xxl_job.sql 调度中心支持集群部 阅读全文
摘要:
Linux上部署项目的要求 1.参考相关资料,能够在Linux上成功部署项目即可。 2.必须掌握Linux的基本命令。 通过Xshell / Xftp客户端连接Linux服务器。 命令: 1.ifconfig:查看ip地址 2.java -version:查看jdk的版本 3.rpm -qa | g 阅读全文
摘要:
一、将项目打包成war格式,修改pom.xml 1、在其中添加下列代码 <packaging>war</packaging> 2、检查是否有这两个插件, maven-war-plugin 和 spring-boot-maven-plugin <build> <plugins> <plugin> <g 阅读全文
摘要:
一、下载软件 1、nginx下载地址:nginx: download 2、tomcat下载地址:https://tomcat.apache.org/ 二、实现目标 访问http://localhost地址时, 将请求轮询到tomcat1和tomcat2服务器上, 实现负载均衡, 并通过proxy_c 阅读全文
摘要:
<insert id="insertBill" parameterType="java.util.List"><!-- 普通的批量插入数据 注意: mybatis的jdbcType的值必须是全部大写,#{item.billCode,jdbcType=VARCHAR} Mybatis中jdbcType 阅读全文
摘要:
条件查询 @SpringBootTest public class WrapperTest { @Autowired private UserMapper userMapper; @Test void contextLoads() { QueryWrapper<User> wrapper = new 阅读全文
摘要:
批量查询 @Test public void testSelectByBatch() { //批量查询 List<User> users = userMapper.selectBatchIds(Arrays.asList(1, 2, 3)); users.forEach(System.out::pr 阅读全文
摘要:
自动填充时间 数据库中添加字段 create_time和update_time,用代码实现自动填充时间: 1、在实体类添加注解@TableField 2、写一个处理类继承 MetaObjectHandler。 @Component //一定不能忘了把该组件添加到IOC容器中 @Slf4j publi 阅读全文
摘要:
分布式系统唯一id生成:https://www.cnblogs.com/haoxinyue/p/5208136.html 雪花算法:https://www.jianshu.com/p/2a27fbd9e71a @Data @AllArgsConstructor @NoArgsConstructor 阅读全文