1:继承Thread 继承Thread 实现多线程,重写run方法,run方法实现具体的业务逻辑Java 只支持单继承,不建议这样使用/** * 继承 Thread类,重写 run方法 */public class ThreadDome extends Thread { @Override publ ...
分类:
编程语言 时间:
2021-02-26 13:33:48
阅读次数:
0
1.指定到人 @Override @Transactional(rollbackFor = Exception.class) // @GlobalTransactional public boolean startProcess(ProcessPurchaseOrder bean) { //是否启动 ...
分类:
其他好文 时间:
2021-02-26 13:05:55
阅读次数:
0
playbook部署lamp 环境 主机IP |需要安装的服务 |name -|-|- 192.168.23.132 |ansible |ansible 192.168.23.133 |httpd |httpd 192.168.23.134 |mysql |mysql 192.168.23.135 ...
分类:
其他好文 时间:
2021-02-23 14:38:08
阅读次数:
0
见博客:https://blog.csdn.net/jgm20475/article/details/80381650?utm_source=blogxgwz6 出现这种错误时会退出不了vim,那么出现这种错误的原因有: 1、该错误为当前用户没有权限对文件修改。 2、该文件没有正确保存退出,正在打开 ...
分类:
其他好文 时间:
2021-02-23 13:57:52
阅读次数:
0
npm init -y npm i express mongoose ejs npm i method-override nodemon app.js nodemon seeds/index.js models/campgrounds.js const mongoose = require('mon ...
分类:
其他好文 时间:
2021-02-16 12:42:42
阅读次数:
0
abstract class Vehicle { public abstract void Drive(); } class Car : Vehicle { public override void Drive() { Console.WriteLine("Car is driving..."); ...
。
const methodOverride = require('method-override')
const { v4: uuid } = require('uuid'); //For generating ID's
// To 'fake' put/patch/delete request... ...
分类:
其他好文 时间:
2021-02-09 11:57:54
阅读次数:
0
public class SinglyLinkedList<T> { // 一个空的头节点 private final Node head = new Node(null); private Node tail = head; @SafeVarargs public final void addAl ...
分类:
其他好文 时间:
2021-02-08 12:42:48
阅读次数:
0
Thread //创建线程方式一:继承Thread类,重写run()方法,调用start开启线程 public class TestThread01 extends Thread { @Override public void run() { //run方法线程体 for (int i = 0; i ...
分类:
其他好文 时间:
2021-02-08 12:36:43
阅读次数:
0
在MongoDB中OjbectId 类型Json序列化反序列化会出错,可以通过以下两种方式解决 1、最简单粗暴的方法,从新定一个一个业务主键比如key,这样的话等于之前的_id不起作用了 2、使用JsonConverter public class ObjectIdConverter : JsonC ...
分类:
数据库 时间:
2021-02-08 12:28:02
阅读次数:
0