SpringCloud Distributed Microservice Cloud Architecture Part 5: Routing Gateway (zuul)(Finchley version)

SpringCloud Distributed Microservice Cloud Architecture Part 5: Routing Gateway (zuul)(Finchley version)In the micro-service architecture, several basic service governance components are needed, including service registration and discovery, service consumption, load balancing, circuit breaker, intelligent routing, configuration management, etc ...

Posted by wpsa on Fri, 13 Dec 2019 10:31:35 -0800

Other control of Android studio (option selected, number of columns changed)

GridView and Spinner (follow up update of renderings) Use GridView to display the grid. In the grid, there are pictures with text. In addition, a Spinner can control the number of GridView columns. Case: the interface consists of a group of rows and columns with pictures and text. The Spinner controls the number of columns dis ...

Posted by champbronc2 on Fri, 13 Dec 2019 08:08:18 -0800

Do you think what you think is what you think? Record a joint debugging process of peer-to-peer server notification

Two systems of the company. Our A system should send A business contract application to B system. After receiving the data, system B will process it asynchronously and send A notice to our system A after signing. The interface document indicates that the asynchronous notification is sent through the post request of http protocol, and the me ...

Posted by powlow on Fri, 13 Dec 2019 02:44:22 -0800

Record the charging points of AJAX

First of all, what is AJAX? AJAX = asynchronous JavaScript and XML. AJAX is a technology for creating fast dynamic web pages. AJAX enables web pages to be updated asynchronously by exchanging a small amount of data with the server in the background. This means that a part of the page can be updated without reloading the entire page. Traditional ...

Posted by dinger on Fri, 13 Dec 2019 00:46:48 -0800

Correction of tile coordinate deviation in Gaud offline map

For map coordinate migration, take leaflet as an example, there are the following solutions Method 1. Modify the source code of leaflet to solve the problem of map coordinate migration Method 2. Add the true latitude and longitude of the point to the encrypted map through the offset algorithm Method 3. Rectify the off-line map tile directly ...

Posted by nic9 on Thu, 12 Dec 2019 22:42:55 -0800

Four registration postures of Listener in spring boot series

Filter and servlet, the three elements of java web, are introduced respectively. Next, let's take a look at the related knowledge points of Listener. The main content of this blog is how to customize the Listener and register it to the spring container in the spring boot environment <!-- more --> I. environment configuration 1. Project co ...

Posted by madcat on Thu, 12 Dec 2019 22:01:42 -0800

Apache Maven from Getting Started to Ascending

If you like, order a compliment! GitHub Project JavaHouse Synchronized recording 1 Introduction Maven should be an essential tool in everyday Java development, and of course Gradle is used.So what exactly is Maven?Isn't it just a dependent import tool?I believe many people feel the same way as me.But in general, what you feel is often unrelia ...

Posted by dennissanche on Thu, 12 Dec 2019 18:03:12 -0800

Android Sample Application: Use of Open Source Framework Glide

Use of the Android Open Source Framework Glide - Sample Applications Load Network Picture Load Network Picture Load Local Pictures - Simple Gallery Load Network Picture Introduce corresponding Libraries compile 'com.android.support:recyclerview-v7:25.0.0' compile 'com.github.bumptech.glide:glide:3.7.0' Create layout res/layout/fragment_list ...

Posted by tom92 on Thu, 12 Dec 2019 17:15:57 -0800

Android uses Gradle to realize multi-channel packaging, with different package names, logos, names, themes, etc. for the same project

Recently, the company has a new requirement. According to the previous project, change the name, logo and some resource files to repackage a new app Implementation ideas 1. Copy a project name, logo, etc. (inefficient, troublesome) ❌ 2. Multi channel packaging (convenient and fast) Implementation method Build.gradle > An ...

Posted by candle21428 on Thu, 12 Dec 2019 10:41:53 -0800

One way many to one association in JPA

scene Introduction to JPA and building HelloWorld (with code download): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103473937 After the HelloWorld of JPA is built in the above blog, only the database mapping is completed for the customer entity class. How to realize the one-way many to one mapping. Note: Blog home page: https://bl ...

Posted by Richter on Thu, 12 Dec 2019 06:06:55 -0800