- 浏览: 216700 次
- 性别:
- 来自: 深圳
最新评论
-
白云天:
主机网络端口使用命令: netstat -nplt
centos7.4上安装mysql5.7记录 -
白云天:
登录到 容器内部 docker ps -a查询容器IDsudo ...
docker初探 -
白云天:
export jars to local directory ...
Camel的direct,Bean测试 -
白云天:
location /esb/ { proxy_ ...
Camel的direct,Bean测试 -
白云天:
centos 中添加 shell_script.sh 为开机启 ...
Camel的direct,Bean测试
文章列表
作者:翼动晴空
链接:https://www.jianshu.com/p/0a656b3d94b2來源:简书简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
kubernetes基本框架和基本概念
Kubernetes是什么?我(们)为什么使用?
Kubernetes主要概念
Kubernetes总体结构
Kubernetes核心原理
Kubernetes网络模型
Kubernetes是什么?我(们)为什么使用?
Kubernetes是Google(基于borg)开源的容器集群管理系统,其提供应用部署、维护、 扩展机制等功能,利用Ku ...
准备
CentOS7默认安装了和MySQL有兼容性的MariaDB数据库,在我们安装MySQL5.7之前为了避免发生冲突首先删除MariaDB。
# rpm -qa | grep maria
mariadb-libs-5.5.50-1.el7_2.x86_64
# yum remove mariadb-libs -y
添加MySQL的yum源
在CentOS7上yum安装MySQL需使用MySQL的yum源。执行以下命令首先添加MySQL的yum源。
# yum localinstall http://dev.mysql.com/get/mysql57-communit ...
一种在线程池中执行目标代码,异步获取返回值的方式。
仅供参考,欢迎拍砖。
/** * 异步返回结果 * @author benyi * @date 2017-12-9 * */public class AsyResult { private String tid; private Object result; private boolean finished=false; public AsyResult(String id){ tid=id; finished=false; } public String ...
import org.springframework.beans.BeansException;import org.springframework.beans.factory.DisposableBean;import org.springframework.context.ApplicationContext;import org.springframework.context.ApplicationContextAware;import org.springframework.context.annotation.Lazy;import org.springframework.ster ...
1、docker , 先从仓库中下载一个和自己的 linux 一致的 centos image 。
命令: docker pull centos
2、运行 centos 镜像,运行起来后成为一个 container
image_id 用 docker images 命令查看
docker run -i -t -v /root/software/:/mnt/software/ image_id /bin/bash
docker run <相关参数> <镜像 ID> <初始命令> 其中,相关参数 ...
java-nio的hello-word
- 博客分类:
- Java技术
重点注意:有说明的地方。
package nio.chat;import java.net.InetSocketAddress;import java.nio.ByteBuffer;import java.nio.channels.SelectionKey;import java.nio.channels.Selector;import java.nio.channels.ServerSocketChannel;import java.nio.channels.SocketChannel;import java.util.Iterato ...
mySql数据库如果采用复制(Replication)方式的群集,在程序中进行读写分离的处理办法有如下几种:自动主从管理方案有: MHA 官方介绍:https://code.google.com/p/mysql-master-ha/1、采用 MySql提供的 ReplicationDriver 驱动程序, 简单的过程如下: 缺点: 无法集成到 Spring 进行读写分离操作。public static void main(String[] args) throws Exception { ReplicationDriver driver = new ReplicationDri ...
备份记录,随便笔记
#######################################################################user nginx;worker_processes 4;worker_cpu_affinity 0001 0010 0100 1000; error_log /var/log/nginx/error.log;pid /var/run/nginx.pid;events { worker_connections 1024;}#------------------------- ...
mysql5.7安装
- 博客分类:
- 记忆
1、下载安装包 http://dev.mysql.com/downloads/mysql/#downloads 推荐下载通用安装方法的TAR包(http://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.12-linux-glibc2.5-x86_64.tar)。
2.检查库文件是否存在,如有删除。 [root@localhost Desktop]$ rpm -qa | grep mysql mysql-libs-5.1.52-1.el6_0.1.x86_64
[root@localhost ~]# rpm -e my ...
本文记录是在 Karaf 环境下使用 camel-amp 的过程,使用的 Apollo 作为 jms 服务器。
package example;import java.util.Date;public class Show { public Show(){ // } public String time(){ return (new Date()).toString(); } public void print(String msg){ System.out.println(" ...
from: http://aniketos.eu/content/easy-installation-bundles-apache-karaf
Apache Karaf provides many convenient ways for bundles installation:
Use of the install command in Karaf's command prompt
Copying of bundles to the deploy directory
Use of Apache Karaf features
From these ...
本实验的配置文件 camel-context.xml 内容:
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springfr ...
//处理Bean
import java.io.ByteArrayInputStream;import java.util.Date;import java.util.Map;import org.apache.camel.Exchange;import org.apache.camel.Message;public class TestBean { public TestBean(){ super(); } public String showBody(Exchange exchange) throws Exception { ...
Apache CamelUser GuideVersion 2.17.0Copyright 2007-2015, Apache Software FoundationTable of Contents Table of Contents Introduction Quickstart Getting Started Architecture Enterprise Integration Patterns Cook Book Tutorials Language Appendix DataFormat Appendix Patter ...
web.xml
<?xml version="1.0" encoding="ISO-8859-1"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jav ...