Building Continuous Integration Interface Test Platform (Jenkins+Ant+Jmeter)

I. Ant Installation Download link: https://mirrors.tuna.tsinghua.edu.cn/apache//ant/binaries/apache-ant-1.9.9-bin.zi After successful download, copy the extracted directory to disk and configure environment variables ant_home: File storage directory 2,path:%ant_home%\bin 3,classpath: %ant_home%\lib Open cmd and enter ant-version val ...

Posted by nats on Wed, 17 Apr 2019 10:54:34 -0700

Release REST services (jax-RS) using Spring + CXF

Today we focus on REST, another widely used Web service after SOAP. Unlike SOAP, REST does not have the concept of WSDL or what is called an "envelope", because REST advocates a simple and crude way to express data, which can be in JSON format or XML format. It's entirely up to you to decide. The full name of REST is Representational ...

Posted by hours12 on Wed, 17 Apr 2019 09:09:34 -0700

Resource isolation - system D

introduce systemd System and Users position /usr/lib/systemd/system /usr/lib/systemd/user unit The basic unit of system management, called unit, is divided into the following types Service unit: System services Target unit: A group of units Device Unit: Hardware Device Mount Unit: Mount Point of File System Automount Unit: Au ...

Posted by rashmi_k28 on Mon, 15 Apr 2019 21:45:32 -0700

Common sql statements in hive

data base Create a database hive> CREATE DATABASE financials; hive> CREATE DATABASE IF NOT EXISTS financials; Display existing databases hive> SHOW DATABASES; default financials hive> CREATE DATABASE human_resources; hive> SHOW DATABASES; default financials human_resources Conditional Query Database hive> SHOW DATABASE ...

Posted by johnsonzhang on Mon, 15 Apr 2019 14:42:32 -0700

Creation Session of Zookeeper Client API (6)

Zookeeper provides a Java client API. This blog focuses on creating conversations. Create project First, create a simple java project based on maven management. Introduce zookeeper in the pom file. <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version> ...

Posted by ah66533 on Sun, 14 Apr 2019 19:09:31 -0700

logstash configuration file details

Detailed application configuration of Logstash background The business purpose is to analyze the daily logs generated by nginx and apache, monitor the url, ip, rest interface and other information, and send the data to the elastic search service. config input Getting information from log files file { path => "/home/keepgostu ...

Posted by don_s on Sun, 14 Apr 2019 17:27:31 -0700

Detailed Explanation of Apache's Common Functions

Apache is a web server with the highest usage. A in LAMP refers to it. Because of its open source, stability, security and other characteristics, it is widely used. The previous article has documented how to build a LAMP architecture, which is only the first step. Apache service is the most important one, and it is also the core of LAMP. The ...

Posted by pelegk2 on Fri, 12 Apr 2019 22:24:33 -0700

A Simple Introduction to Thrift and Practical Warfare

brief introduction Thift is a software framework for the development of extensible and cross-language services. It combines powerful software stacks and code generation engines to build seamlessly integrated and efficient services in C+, Java, Go, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, and OCaml.Off ...

Posted by misheck on Fri, 12 Apr 2019 13:30:31 -0700

Use and Encapsulation of CountDownTimer for Android Countdown and Improvement

(1) Introduction Official documents. CountDownTimer is a countdown class. You can also specify a time interval for regular notification. Take a chestnut, for example, if your countdown is 100 seconds, you can specify every 20 seconds. This will be called back at the beginning, once in 20 seconds, once in 40 seconds. The callbacks at 200 se ...

Posted by Templar on Fri, 12 Apr 2019 01:33:32 -0700

Android prompt version update

Foreword: At the end of software development, we should all encounter this problem. Fortunately, there are a lot of information on the internet, so it's almost done with little effort. Now it's recorded. Used here PHP The server. Effects: (PHP Server) After testing, if it is the latest version                                          If it's n ...

Posted by dallasx on Wed, 10 Apr 2019 21:33:31 -0700