使用软件 :VMware WorkStation 使用系统:linux centOS 7 windows远程调用软件:xshell 挂机-启动状态后 先使用 service network restart 启动网络服务(注:7和6的版本启动方式略有不同) 输入 ifconfig 查询主机号 使用xs ...
分类:
其他好文 时间:
2020-08-11 13:04:58
阅读次数:
90
两个回调方法:发送消息成功之后执行事务的executeLocalTransaction,回查时候调用的checkLocalTransaction。 思路:执行事务的时候,调用service的方法,这个方法需要用事务注解,方法参数中传入唯一id,事务方法最后判断如果id不为空,往事务表中插入唯一id, ...
分类:
其他好文 时间:
2020-08-04 16:41:25
阅读次数:
99
一、关闭Windows Update服务 右键“此电脑”>“管理” 找到Windows Update服务双击打开,服务状态>停止,服务类型>禁用 “恢复”选项卡,三项全部选择“无操作” 二、关闭windows update medic service服务 命令行运行(管理模式) 1 REG add ...
centos6中防火墙是iptables,centos7中防火墙是firewalld 在centos7中用service iptables status查看防火墙状态会报错 Redirecting to /bin/systemctl status iptables.service Unit ipta ...
分类:
其他好文 时间:
2020-07-06 10:48:36
阅读次数:
94
一、基本操作 1.新建UserService接口文件继承MP提供的IService<T>接口。 public interface UserService extends IService<User> { } 2.新建UserMapper接口 public interface UserMapper e ...
分类:
其他好文 时间:
2020-07-05 21:05:18
阅读次数:
381
想利用 service mysql start 启动mysql数据库,但是发现出现错误: Failed to start mysql.service: Unit not found. 1、查询/etc/init.d/下是否存在mysql ll /etc/init.d/ | grep mysql 发现 ...
分类:
数据库 时间:
2020-06-30 11:00:02
阅读次数:
154
https://www.cnblogs.com/linuxws/p/9017404.html 几乎所有的网络设备都可以通过syslog协议,将日志信息以UDP的形式传送给远端服务器,远端接收日志服务器必须通过syslogd监听UDP端口514,并根据 syslog.conf 配置文件张的配置处理。配 ...
分类:
系统相关 时间:
2020-06-29 13:45:45
阅读次数:
83
我在使用在Netty的MyUdpHandler中需要调用service的方法,但是在注入service时总是为null 解决方法: 1.自定义一个工具类实现ApplicationContextAware接口,当一个类实现ApplicationContextAware接口后,当这个类被spring加载 ...
分类:
Web程序 时间:
2020-06-29 11:23:12
阅读次数:
145
Spring注解大全 1.声明bean的注解 Spring注解 描述 @Component 组件,没有明确的角色, 有以下三个衍生层 @Service 在业务逻辑层使用(service层) @Repository 持久层声明的注解 (dao层) @Controlle 声明Http处理对象 (web层 ...
分类:
编程语言 时间:
2020-06-25 13:57:37
阅读次数:
78
1、查看mysql版本方法一:status;方法二:select version(); 2、Mysql启动、停止、重启常用命令a、启动方式1、使用 service 启动:[root@localhost /]# service mysqld start (5.0版本是mysqld)[root@szxd ...
分类:
数据库 时间:
2020-06-23 13:47:32
阅读次数:
69