MHA 安装与简单使用
/usr/local/mysql/bin/mysqld --defaults-file=/data/mysql/mysql_3310/my_3310.cnf --initialize-insecure
/usr/local/mysql/bin/mysqld --defaults-file=/data/mysql/mysql_3310/my_3310.cnf &
change master to master_host='192.168.5.100',master_port=3310, master_user='rpl', master_password='',master_auto_position=1;
[server default]log_level=debug ### 开启debug的模式manager_log=/etc/masterha/app1.logmanager_workdir=/etc/masterha/app1master_binlog_dir=/data/mysql/mysql_3310/logsmaster_ip_failover_script=/etc/masterha/master_ip_failovermaster_ip_online_change_script=/etc/masterha/master_ip_failoverpassword=123456ping_interval=1remote_workdir=/etc/masterha/app1repl_password=123456repl_user=rplssh_user=rootuser=root[server1]candidate_master=1hostname=node1port=3310[server2]candidate_master=1hostname=node2port=3310[server3]hostname=node3port=3310
#masterha_check_ssh --conf=/etc/masterha/app1.confWed Nov 1 01:56:31 2017 - [info] Reading default configuration from /etc/masterha_default.cnf..Wed Nov 1 01:56:31 2017 - [info] Reading application default configuration from /etc/masterha/app1.conf..Wed Nov 1 01:56:31 2017 - [info] Reading server configuration from /etc/masterha/app1.conf..Wed Nov 1 01:56:31 2017 - [info] Starting SSH connection tests..Wed Nov 1 01:56:32 2017 - [debug]Wed Nov 1 01:56:31 2017 - [debug] Connecting via SSH from root@192.168.5.102(192.168.5.102:22) to root@192.168.5.103(192.168.5.103:22)..Wed Nov 1 01:56:32 2017 - [debug] ok.Wed Nov 1 01:56:32 2017 - [debug]Wed Nov 1 01:56:32 2017 - [debug] Connecting via SSH from root@192.168.5.103(192.168.5.103:22) to root@192.168.5.102(192.168.5.102:22)..Wed Nov 1 01:56:32 2017 - [debug] ok.Wed Nov 1 01:56:32 2017 - [info] All SSH connection tests passed successfully.
- 检查 主从复制是不是正常:masterha_check_repl --conf=/etc/masterha/app1.conf
# masterha_check_repl --conf=/etc/masterha/app1.confWed Nov 1 01:37:46 2017 - [info] Reading default configuration from /etc/masterha_default.cnf..Wed Nov 1 01:37:46 2017 - [info] Reading application default configuration from /etc/masterha/app1.conf..Wed Nov 1 01:37:46 2017 - [info] Reading server configuration from /etc/masterha/app1.conf..Wed Nov 1 01:37:46 2017 - [info] MHA::MasterMonitor version 0.56.Wed Nov 1 01:37:47 2017 - [info] GTID failover mode = 1Wed Nov 1 01:37:47 2017 - [info] Dead Servers:Wed Nov 1 01:37:47 2017 - [info] Alive Servers:Wed Nov 1 01:37:47 2017 - [info] 192.168.5.102(192.168.5.102:3310)Wed Nov 1 01:37:47 2017 - [info] 192.168.5.103(192.168.5.103:3310)Wed Nov 1 01:37:47 2017 - [info] Alive Slaves:Wed Nov 1 01:37:47 2017 - [info] 192.168.5.103(192.168.5.103:3310) Version=5.7.19-17-29.22-log (oldest major version between slaves) log-bin:enabledWed Nov 1 01:37:47 2017 - [info] GTID ONWed Nov 1 01:37:47 2017 - [info] Replicating from 192.168.5.102(192.168.5.102:3310)Wed Nov 1 01:37:47 2017 - [info] Primary candidate for the new Master (candidate_master is set)Wed Nov 1 01:37:47 2017 - [info] Current Alive Master: 192.168.5.102(192.168.5.102:3310)Wed Nov 1 01:37:47 2017 - [info] Checking slave configurations..Wed Nov 1 01:37:47 2017 - [info] read_only=1 is not set on slave 192.168.5.103(192.168.5.103:3310).Wed Nov 1 01:37:47 2017 - [info] Checking replication filtering settings..Wed Nov 1 01:37:47 2017 - [info] binlog_do_db= , binlog_ignore_db=Wed Nov 1 01:37:47 2017 - [info] Replication filtering check ok.Wed Nov 1 01:37:47 2017 - [info] GTID (with auto-pos) is supported. Skipping all SSH and Node package checking.Wed Nov 1 01:37:47 2017 - [info] Checking SSH publickey authentication settings on the current master..Wed Nov 1 01:37:47 2017 - [info] HealthCheck: SSH to 192.168.5.102 is reachable.Wed Nov 1 01:37:47 2017 - [info]192.168.5.102(192.168.5.102:3310) (current master)+--192.168.5.103(192.168.5.103:3310)Wed Nov 1 01:37:47 2017 - [info] Checking replication health on 192.168.5.103..Wed Nov 1 01:37:47 2017 - [info] ok.Wed Nov 1 01:37:47 2017 - [info] Checking master_ip_failover_script status:Wed Nov 1 01:37:47 2017 - [info] /etc/masterha/master_ip_failover --command=status --ssh_user=root --orig_master_host=192.168.5.102 --orig_master_ip=192.168.5.102 --orig_master_port=3310Wed Nov 1 01:37:47 2017 - [info] OK.Wed Nov 1 01:37:47 2017 - [warning] shutdown_script is not defined.Wed Nov 1 01:37:47 2017 - [info] Got exit code 0 (Not master dead).MySQL Replication Health is OK.
#masterha_check_status --conf=/etc/masterha/app1.confapp1 is stopped(2:NOT_RUNNING).
#nohup masterha_manager --conf=/etc/masterha/app1.conf --remove_dead_master_conf --ignore_last_failover < /dev/null > /etc/masterha/app1/manager.log 2>&1 &[1] 9440
#ps aux | grep masterroot 1108 0.0 0.1 89544 2148 ? Ss Oct30 0:00 /usr/libexec/postfix/master -wroot 9440 2.0 1.0 287396 20200 pts/5 S 01:42 0:00 perl /usr/bin/masterha_manager --conf=/etc/masterha/app1.conf --remove_dead_master_conf --ignore_last_failoverroot 9463 0.0 0.0 112660 976 pts/5 R+ 01:42 0:00 grep --color=auto master
#masterha_master_switch --conf=/etc/masterha/app1.conf --master_state=alive --new_master_host=192.168.5.102 --orig_master_is_new_slave --running_updates_limit=10000 --interactive=0Wed Nov 1 04:40:30 2017 - [info] MHA::MasterRotate version 0.56.Wed Nov 1 04:40:30 2017 - [info] Starting online master switch..Wed Nov 1 04:40:30 2017 - [info]Wed Nov 1 04:40:30 2017 - [info] * Phase 1: Configuration Check Phase..Wed Nov 1 04:40:30 2017 - [info]Wed Nov 1 04:40:30 2017 - [info] Reading default configuration from /etc/masterha_default.cnf..Wed Nov 1 04:40:30 2017 - [info] Reading application default configuration from /etc/masterha/app1.conf..Wed Nov 1 04:40:30 2017 - [info] Reading server configuration from /etc/masterha/app1.conf..Wed Nov 1 04:40:30 2017 - [info] GTID failover mode = 1Wed Nov 1 04:40:30 2017 - [info] Current Alive Master: 192.168.5.100(192.168.5.100:3310)Wed Nov 1 04:40:30 2017 - [info] Alive Slaves:Wed Nov 1 04:40:30 2017 - [info] 192.168.5.102(192.168.5.102:3310) Version=5.7.19-log (oldest major version between slaves) log-bin:enabledWed Nov 1 04:40:30 2017 - [info] GTID ONWed Nov 1 04:40:30 2017 - [info] Replicating from 192.168.5.100(192.168.5.100:3310)Wed Nov 1 04:40:30 2017 - [info] Primary candidate for the new Master (candidate_master is set)Wed Nov 1 04:40:30 2017 - [info] 192.168.5.103(192.168.5.103:3310) Version=5.7.19-17-29.22-log (oldest major version between slaves) log-bin:enabledWed Nov 1 04:40:30 2017 - [info] GTID ONWed Nov 1 04:40:30 2017 - [info] Replicating from 192.168.5.100(192.168.5.100:3310)Wed Nov 1 04:40:30 2017 - [info] Primary candidate for the new Master (candidate_master is set)Wed Nov 1 04:40:30 2017 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..Wed Nov 1 04:40:30 2017 - [info] ok.Wed Nov 1 04:40:30 2017 - [info] Checking MHA is not monitoring or doing failover..Wed Nov 1 04:40:30 2017 - [error][/usr/share/perl5/vendor_perl/MHA/MasterRotate.pm, ln142] Getting advisory lock failed on the current master. MHA Monitor runs on the current master. Stop MHA Manager/Monitor and try again.Wed Nov 1 04:40:30 2017 - [error][/usr/share/perl5/vendor_perl/MHA/ManagerUtil.pm, ln177] Got ERROR: at /usr/bin/masterha_master_switch line 53.
#masterha_master_switch --conf=/etc/masterha/app1.conf --master_state=alive --new_master_host=node2 --running_updates_limit=10000 --interactive=0Thu Nov 2 05:58:52 2017 - [info] MHA::MasterRotate version 0.56.Thu Nov 2 05:58:52 2017 - [info] Starting online master switch..Thu Nov 2 05:58:52 2017 - [info]Thu Nov 2 05:58:52 2017 - [info] * Phase 1: Configuration Check Phase..Thu Nov 2 05:58:52 2017 - [info]Thu Nov 2 05:58:52 2017 - [info] Reading default configuration from /etc/masterha_default.cnf..Thu Nov 2 05:58:52 2017 - [info] Reading application default configuration from /etc/masterha/app1.conf..Thu Nov 2 05:58:52 2017 - [info] Reading server configuration from /etc/masterha/app1.conf..Thu Nov 2 05:58:52 2017 - [info] GTID failover mode = 1Thu Nov 2 05:58:52 2017 - [info] Current Alive Master: 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:58:52 2017 - [info] Alive Slaves:Thu Nov 2 05:58:52 2017 - [info] 192.168.5.102(192.168.5.102:3310) Version=5.7.19-log (oldest major version between slaves) log-bin:enabledThu Nov 2 05:58:52 2017 - [info] GTID ONThu Nov 2 05:58:52 2017 - [info] Replicating from 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:58:52 2017 - [info] Primary candidate for the new Master (candidate_master is set)Thu Nov 2 05:58:52 2017 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..Thu Nov 2 05:58:52 2017 - [info] ok.Thu Nov 2 05:58:52 2017 - [info] Checking MHA is not monitoring or doing failover..Thu Nov 2 05:58:52 2017 - [info] Checking replication health on 192.168.5.102..Thu Nov 2 05:58:52 2017 - [info] ok.Thu Nov 2 05:58:52 2017 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln1218] node2 is not alive!Thu Nov 2 05:58:52 2017 - [error][/usr/share/perl5/vendor_perl/MHA/MasterRotate.pm, ln232] Failed to get new master!Thu Nov 2 05:58:52 2017 - [error][/usr/share/perl5/vendor_perl/MHA/ManagerUtil.pm, ln177] Got ERROR: at /usr/bin/masterha_master_switch line 53.[root@node1 05:58:52 /etc/masterha/app1]#masterha_master_switch --conf=/etc/masterha/app1.conf --master_state=alive --new_master_host=node2Thu Nov 2 05:59:00 2017 - [info] MHA::MasterRotate version 0.56.Thu Nov 2 05:59:00 2017 - [info] Starting online master switch..Thu Nov 2 05:59:00 2017 - [info]Thu Nov 2 05:59:00 2017 - [info] * Phase 1: Configuration Check Phase..Thu Nov 2 05:59:00 2017 - [info]Thu Nov 2 05:59:00 2017 - [info] Reading default configuration from /etc/masterha_default.cnf..Thu Nov 2 05:59:00 2017 - [info] Reading application default configuration from /etc/masterha/app1.conf..Thu Nov 2 05:59:00 2017 - [info] Reading server configuration from /etc/masterha/app1.conf..Thu Nov 2 05:59:00 2017 - [info] GTID failover mode = 1Thu Nov 2 05:59:00 2017 - [info] Current Alive Master: 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:59:00 2017 - [info] Alive Slaves:Thu Nov 2 05:59:00 2017 - [info] 192.168.5.102(192.168.5.102:3310) Version=5.7.19-log (oldest major version between slaves) log-bin:enabledThu Nov 2 05:59:00 2017 - [info] GTID ONThu Nov 2 05:59:00 2017 - [info] Replicating from 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:59:00 2017 - [info] Primary candidate for the new Master (candidate_master is set)It is better to execute FLUSH NO_WRITE_TO_BINLOG TABLES on the master before switching. Is it ok to execute on 192.168.5.100(192.168.5.100:3310)? (YES/no): yesThu Nov 2 05:59:03 2017 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..Thu Nov 2 05:59:03 2017 - [info] ok.Thu Nov 2 05:59:03 2017 - [info] Checking MHA is not monitoring or doing failover..Thu Nov 2 05:59:03 2017 - [info] Checking replication health on 192.168.5.102..Thu Nov 2 05:59:03 2017 - [info] ok.Thu Nov 2 05:59:03 2017 - [error][/usr/share/perl5/vendor_perl/MHA/ServerManager.pm, ln1218] node2 is not alive!Thu Nov 2 05:59:03 2017 - [error][/usr/share/perl5/vendor_perl/MHA/MasterRotate.pm, ln232] Failed to get new master!Thu Nov 2 05:59:03 2017 - [error][/usr/share/perl5/vendor_perl/MHA/ManagerUtil.pm, ln177] Got ERROR: at /usr/bin/masterha_master_switch line 53.[root@node1 05:59:03 /etc/masterha/app1]#masterha_master_switch --conf=/etc/masterha/app1.conf --master_state=aliveThu Nov 2 05:59:26 2017 - [info] MHA::MasterRotate version 0.56.Thu Nov 2 05:59:26 2017 - [info] Starting online master switch..Thu Nov 2 05:59:26 2017 - [info]Thu Nov 2 05:59:26 2017 - [info] * Phase 1: Configuration Check Phase..Thu Nov 2 05:59:26 2017 - [info]Thu Nov 2 05:59:26 2017 - [info] Reading default configuration from /etc/masterha_default.cnf..Thu Nov 2 05:59:26 2017 - [info] Reading application default configuration from /etc/masterha/app1.conf..Thu Nov 2 05:59:26 2017 - [info] Reading server configuration from /etc/masterha/app1.conf..Thu Nov 2 05:59:26 2017 - [info] GTID failover mode = 1Thu Nov 2 05:59:26 2017 - [info] Current Alive Master: 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:59:26 2017 - [info] Alive Slaves:Thu Nov 2 05:59:26 2017 - [info] 192.168.5.102(192.168.5.102:3310) Version=5.7.19-log (oldest major version between slaves) log-bin:enabledThu Nov 2 05:59:26 2017 - [info] GTID ONThu Nov 2 05:59:26 2017 - [info] Replicating from 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:59:26 2017 - [info] Primary candidate for the new Master (candidate_master is set)It is better to execute FLUSH NO_WRITE_TO_BINLOG TABLES on the master before switching. Is it ok to execute on 192.168.5.100(192.168.5.100:3310)? (YES/no): yesThu Nov 2 05:59:28 2017 - [info] Executing FLUSH NO_WRITE_TO_BINLOG TABLES. This may take long time..Thu Nov 2 05:59:28 2017 - [info] ok.Thu Nov 2 05:59:28 2017 - [info] Checking MHA is not monitoring or doing failover..Thu Nov 2 05:59:28 2017 - [info] Checking replication health on 192.168.5.102..Thu Nov 2 05:59:28 2017 - [info] ok.Thu Nov 2 05:59:28 2017 - [info] Searching new master from slaves..Thu Nov 2 05:59:28 2017 - [info] Candidate masters from the configuration file:Thu Nov 2 05:59:28 2017 - [info] 192.168.5.100(192.168.5.100:3310) Version=5.7.19-log log-bin:enabledThu Nov 2 05:59:28 2017 - [info] GTID ONThu Nov 2 05:59:28 2017 - [info] 192.168.5.102(192.168.5.102:3310) Version=5.7.19-log (oldest major version between slaves) log-bin:enabledThu Nov 2 05:59:28 2017 - [info] GTID ONThu Nov 2 05:59:28 2017 - [info] Replicating from 192.168.5.100(192.168.5.100:3310)Thu Nov 2 05:59:28 2017 - [info] Primary candidate for the new Master (candidate_master is set)Thu Nov 2 05:59:28 2017 - [info] Non-candidate masters:Thu Nov 2 05:59:28 2017 - [info] Searching from candidate_master slaves which have received the latest relay log events..Thu Nov 2 05:59:28 2017 - [info]From:192.168.5.100(192.168.5.100:3310) (current master)+--192.168.5.102(192.168.5.102:3310)To:192.168.5.102(192.168.5.102:3310) (new master)Starting master switch from 192.168.5.100(192.168.5.100:3310) to 192.168.5.102(192.168.5.102:3310)? (yes/NO): yesThu Nov 2 05:59:30 2017 - [info] Checking whether 192.168.5.102(192.168.5.102:3310) is ok for the new master..Thu Nov 2 05:59:30 2017 - [info] ok.Thu Nov 2 05:59:30 2017 - [info] ** Phase 1: Configuration Check Phase completed.Thu Nov 2 05:59:30 2017 - [info]Thu Nov 2 05:59:30 2017 - [info] * Phase 2: Rejecting updates Phase..Thu Nov 2 05:59:30 2017 - [info]master_ip_online_change_script is not defined. If you do not disable writes on the current master manually, applications keep writing on the current master. Is it ok to proceed? (yes/NO): yesThu Nov 2 05:59:33 2017 - [info] Locking all tables on the orig master to reject updates from everybody (including root):Thu Nov 2 05:59:33 2017 - [info] Executing FLUSH TABLES WITH READ LOCK..Thu Nov 2 05:59:33 2017 - [info] ok.Thu Nov 2 05:59:33 2017 - [info] Orig master binlog:pos is mysql-bin.000013:190.Thu Nov 2 05:59:33 2017 - [info] Waiting to execute all relay logs on 192.168.5.102(192.168.5.102:3310)..Thu Nov 2 05:59:33 2017 - [info] master_pos_wait(mysql-bin.000013:190) completed on 192.168.5.102(192.168.5.102:3310). Executed 0 events.Thu Nov 2 05:59:33 2017 - [info] done.Thu Nov 2 05:59:33 2017 - [info] Getting new master's binlog name and position..Thu Nov 2 05:59:33 2017 - [info] mysql-bin.000011:1167Thu Nov 2 05:59:33 2017 - [info] All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='192.168.5.102', MASTER_PORT=3310, MASTER_AUTO_POSITION=1, MASTER_USER='rpl', MASTER_PASSWORD='xxx';Thu Nov 2 05:59:33 2017 - [info]Thu Nov 2 05:59:33 2017 - [info] * Switching slaves in parallel..Thu Nov 2 05:59:33 2017 - [info]Thu Nov 2 05:59:33 2017 - [info] Unlocking all tables on the orig master:Thu Nov 2 05:59:33 2017 - [info] Executing UNLOCK TABLES..Thu Nov 2 05:59:33 2017 - [info] ok.Thu Nov 2 05:59:33 2017 - [info] All new slave servers switched successfully.Thu Nov 2 05:59:33 2017 - [info]Thu Nov 2 05:59:33 2017 - [info] * Phase 5: New master cleanup phase..Thu Nov 2 05:59:33 2017 - [info]Thu Nov 2 05:59:33 2017 - [info] 192.168.5.102: Resetting slave info succeeded.Thu Nov 2 05:59:33 2017 - [info] Switching master to 192.168.5.102(192.168.5.102:3310) completed successfully.
MHA 安装与简单使用的更多相关文章
- mha安装使用手册
mha安装使用手册 注:目前mha最新的版本代码已经不放到google code网站了,而是放在github上,最新的版本为0.57,github链接如下: mha manager:https://g ...
- (转)python requests的安装与简单运用
requests是python的一个HTTP客户端库,跟urllib,urllib2类似,那为什么要用requests而不用urllib2呢?官方文档中是这样说明的: python的标准库urllib ...
- MongoDB在Windows下安装、Shell客户端的使用、Bson扩充的数据类型、MongoVUE可视化工具安装和简单使用、Robomongo可视化工具(2)
一.Windows 下载安装 1.去http://www.mongodb.org/downloads下载,mongodb默认安装在C:\Program Files\MongoDB目录下,到F:\Off ...
- python requests的安装与简单运用
requests是python的一个HTTP客户端库,跟urllib,urllib2类似,那为什么要用requests而不用urllib2呢?官方文档中是这样说明的: python的标准库urllib ...
- memcache的windows下的安装和简单使用
原文:memcache的windows下的安装和简单使用 memcache是为了解决网站访问量大,数据库压力倍增的解决方案之一,由于其简单实用,很多站点现在都在使用memcache,但是memcach ...
- 【RabbitMQ】RabbitMQ在Windows的安装和简单的使用
版本说明 使用当前版本:3.5.4 安装与启动 在官网上下载其Server二进制安装包,在Windows上的安装时简单的,与一般软件没什么区别. 安装前会提示你,还需要安装Erlang,并打开下载页面 ...
- Thrift的安装和简单演示样例
本文仅仅是简单的解说Thrift开源框架的安装和简单使用演示样例.对于具体的解说,后面在进行阐述. Thrift简述 ...
- libmemcached安装及简单例子
libmemcached安装及简单例子 1.下载安装libmemcached $ wget http://launchpad.net/libmemcached/1.0/0.44/+download/ ...
- [hadoop系列]Pig的安装和简单演示样例
inkfish原创,请勿商业性质转载,转载请注明来源(http://blog.csdn.net/inkfish ).(来源:http://blog.csdn.net/inkfish) Pig是Yaho ...
随机推荐
- sql性能优化之多表联查
先贴上我优化后的核心代码: select * into #result from ( select p.AchivementCount,isnull(a.ByAttentionCount,0) ByA ...
- 4.2 js没有块级作用域
JavaScript没有块级作用域.在其他语言上,比如C语言中,有花括号封闭的代码块都有自己的作用域,(如果用ECMAScript的话来讲,就是他们自己的执行环境),因而支持根据条件来定义变量.例如, ...
- RHEL7 网卡绑定
//bond(主要用于6系统) nmcli connection add type bond mode balance-rr con-name bond0 ifname bond0 ipv4.met ...
- python计算机基础-Day1
计算机基础-Day1 一.计算机基础 首先Python是一门编程语言 语言: 那什么是语言?语言就是一种事物与另一种事物沟通的介质. 所以说编程语言是程序员跟计算机沟通的介质,那么为什么要跟计算机沟通 ...
- 关于win8的各种版本的区别
Windows8.1 Professional VL 表示:专业版(大客户版,批量授权) Windows8.1 Multiple editions 表示:多合一版本(包含:标准版.专业版) 个人用户 ...
- SignalR Self Host+MVC等多端消息推送服务(3)
一.概述 最近项目确实太忙,而且身体也有点不舒服,慢性咽炎犯了,昨晚睡觉时喘不过气来,一直没休息好,也没什么时间写博客,今天朋友问我什么时候能出web端的消息发送的文章时,我还在忙着改项目的事,趁着中 ...
- es6使用技巧
##1.通过参数默认值实现强制参数 ES6 的参数默认值只有在真正使用时才会求值.这可以让你强制确保提供参数: /** * Called if a parameter is missing and * ...
- Android 使用shape定义不同控件的的颜色、背景色、边框色
Android 使用shape定义不同控件的的颜色.背景色.边框色 设置按钮的右边框和底边框颜色为红色,边框大小为3dp: 在drawable新建一个 buttonstyle.xml的文件,内容如下: ...
- sql操作知识点个人笔记(SQLServer篇)
实际工作中,总会遇到一些常用的或不常用的sql,这些sql可能并没多少技术含量,但对我们本身而言,一个最大的问题就是很容易忘记.对我个人而言,以前常用的,过阵子之后再用到,发现不记得了.由此得出结论, ...
- Java注解(2)-注解处理器(运行时|RetentionPolicy.RUNTIME)
如果没有用来读取注解的工具,那注解将基本没有任何作用,它也不会比注释更有用.读取注解的工具叫作注解处理器.Java提供了两种方式来处理注解:第一种是利用运行时反射机制:另一种是使用Java提供的API ...