maven Engineering Packing, Single Node Running wordcount (I)
spark shell is only used to test and validate our programs. In production environment, programs are usually programmed in IDE, then packaged into jar packages and submitted to the cluster. The most commonly used method is to create a Maven project to manage the dependencies of jar packages by Maven. First, edit Maven project on ...
Posted by volka on Sat, 19 Jan 2019 13:45:12 -0800
Chapter 4: Building jersey-based RESTful api with IntelliJ IDEA
Compiler: Intellij IDEA
System environment: MAC OS
Related technologies: Maven, tomcat 7, jdk8
1. Create projects
First, create a web Application project (we're going to use maven to introduce Jersey's related jar package, so we don't need to create a restful project directly, because the restful project will download Jersey related jar package ...
Posted by cairesdesigns on Sat, 12 Jan 2019 16:48:10 -0800
Building Dynamic RESTful API with Swagger 2 in Spring MVC
When multi-terminal (WEB/mobile) needs common business logic, RESTful-style services are generally constructed for multi-terminal use.
To reduce the cost of frequent communication with the corresponding terminal development team, we will initially create a RESTful API document to record all interface details.
However, as the project progresse ...
Posted by Coruba67 on Wed, 09 Jan 2019 11:54:10 -0800
Maven's pom.xml file details - --- Build Settings
According to POM 4.0.0 XSD, the build element is conceptually divided into two parts: BaseBuild (including the common parts of poject build and profile build, see below) and some advanced features included in poject build.
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan ...
Posted by matte on Tue, 08 Jan 2019 00:24:10 -0800
Spring-data-NEO4J:SDN Reference Documentation
Spring Data Neo4j is divided into two main components.
1. OGM SUpport
2. Spring Data Repository Support
3. maven
3.1 SDN connects neo4j via BOLT driver
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
</dependency>
...
Posted by tbone-tw on Mon, 07 Jan 2019 19:03:10 -0800
Java parsing OFFICE(word,excel,powerpoint) and PDF implementation scheme and bit-by-bit sharing in development
Java parsing OFFICE(word,excel,powerpoint) and PDF implementation scheme and bit-by-bit sharing in development
Here, I share my experience and feelings before writing this article. All my feelings are condensed into one word: pit. If there are two words, it is "huge pit"=> because this demand is not the same at the beginning, and l ...
Posted by auro on Mon, 07 Jan 2019 17:21:11 -0800
Spring Boot+Dubbo+Maven+ZK Build Enterprise Distributed Micro Services
Service Registry
Service registry can achieve service external unification through specific protocols. Dubbo mainly provides the following types of service registries:
Multicast Registry
Zookeeper Registry
Redis Registry
Simple Registry
In this paper, ZK is used as the service registry, and the construction of ZK environment is not i ...
Posted by jimmy patel on Sun, 06 Jan 2019 13:09:09 -0800
[Jsoup in action] Simulated Browser: Use of Jsoup Tool Classes and retry Strategy for Failed Retries (3)
Get other sister chapters of a Document object from a URL:Simulated Browser: Getting Web Page Data Simply (1)Simulated Browser: post Simulated Log-in to Get Web Page Data (2)Simulated Browser: Use of Jsoup Tool Class and retry Strategy for Failed Retries (3)
Tool class: As the name implies, it is a tool for others to use as a tool. It only pro ...
Posted by FVxSF on Mon, 31 Dec 2018 21:00:08 -0800
Using IDEA to Build Multi-Module Aggregation Engineering Based on Maven (Spring mvc+spring+mybatis integration)
If you like to read Wechat, you can also pay attention to my Wechat public number: learn java well and get high quality learning resources.
Finally, I have time to do java. Today, I use IDEA to build a multi-module aggregation project based on maven. After many attempts, I finally succeed!
Note: ** This is an improved version based on the ori ...
Posted by skaforey on Mon, 31 Dec 2018 13:21:08 -0800
Introduction to spring cloud Series 8: Integrating zipkin with spring cloud sleuth for service link tracking
I haven't written a blog for a long time, mainly because I've been busy lately. Today, I have a piece in my busy schedule.
================ I am a gorgeous partition line==============
Micro-service architecture is a distributed architecture. Micro-service system is divided into service units according to business. A micro-service often has m ...
Posted by jason.farmer on Thu, 27 Dec 2018 09:09:07 -0800