ArcGIS Runtime SDK for Android Learning Notes (1): First Map Application (2-D)

1. Create an Android project: 2. Adding Runtime SDK dependencies ESRI provides two SDK modes, one is local mode, but this mode is more troublesome, the other is networking mode, I use networking mode. Add: allprojects { repositories { google() jcenter() // Adding Esri Public Bintray Maven repository maven { ...

Posted by trulyafrican on Tue, 05 Feb 2019 07:39:17 -0800

Spring Cloud Initial Eureka-Consumer Service Consumption (Declarative Feign) (III)

Spring Cloud Feign is a declarative service invocation client based on Netflix Feign implementation. It makes it easier to write Web service clients. We only need to create an interface and configure it with annotations to bind to the Web service interface. It has pluggable annotation support, including Feign annotations and JAX-RS annotations. ...

Posted by cableuser on Mon, 04 Feb 2019 23:39:17 -0800

MAVEN packaging contains more resource files (src/main/java,src/main/resources)

How to include more resource files when packaging with MAVEN First, let's look at the directory structure of the MAVENx project standard:   Generally, the resource files we use (all kinds of xml, properties, xsd files, etc.) are placed under src/main/resources. When maven is used to package these resource files, maven can package them into ...

Posted by mlewis on Mon, 04 Feb 2019 11:06:16 -0800

Gradle compilation acceleration

I. Analyzing the Reasons for the Slow Construction of Gradle 1. Configure Gradle to build reports File --> Settings --> Build,Execution,Deployment --> Compiler Modify Command-line Options: Content, append -- profile 2. View the generated gradle build report Sync Project , build , run, Make project ... The reports f ...

Posted by PoOP on Sun, 03 Feb 2019 00:24:17 -0800

Maven and Nexus3

Maven and Nexus3 What is Maven? For details on the principle of maven, see: https://my.oschina.net/adailinux/blog/2247017 Installation and configuration Install Maven Installing Maven on centos7 system is very simple. You can install it directly with yum, but before installing maven, you need to configure the JDK (java) environment of the syste ...

Posted by kaszu on Fri, 01 Feb 2019 19:51:15 -0800

spark-streaming sample program

Develop spark-streaming to receive data worldcount from server port in real time. Environment building idea+maven's pom file is as follows: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLoc ...

Posted by phpnew on Wed, 30 Jan 2019 12:21:15 -0800

It can be missing or archived.

Sorry appears when you click on CAT to view LogViews. The message is not there. It can be missing or archived. At this time, this kind of question will be confused, go to github to check it seems that there is no clear answer. Here we locate the problem according to our own guess and the view of source angle. First of all, consul ...

Posted by HIV on Wed, 30 Jan 2019 09:36:15 -0800

Spring Boot from Principle to Practice

"Looking back and laughing at all kinds of beautiful people" means Spring Boot. At first, I just heard about this noun. What's the difference between spring and spring? The name is a little similar. So Spring Boot is an upgraded version of Spring, but it does not enhance Spring's functionality, but provides a quick way to use Spring: ...

Posted by simpjd on Wed, 30 Jan 2019 03:03:15 -0800

Redis Connect Java Project

1. Create a new Maven Project: Redis2. Allow output folders of source folders3. Modify the pom.xml file <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersio ...

Posted by crseader on Tue, 29 Jan 2019 21:45:15 -0800

RxPermission uses

I. RxPermission use 1. Reference dependency: allprojects { repositories { ... maven { url 'https://jitpack.io' } } } dependencies { implementation 'com.github.tbruyelle:rxpermissions:0.10.2' } 2. Android Manifest. XML Declares Permissions <uses-permission android:name="android.permis ...

Posted by j007w on Sat, 26 Jan 2019 11:45:14 -0800