How do I optimize my APP from 400 k to 2B?

Preface This article focuses on the size optimization of Android APK in Android performance optimization. Although the network speed is very fast and the user traffic is very large now, it is necessary to optimize our Android apk file. The user experience is still very bad even though the size of tens or hundreds of megabytes is fixed. Let's ...

Added by gunslinger008 on Tue, 17 Sep 2019 16:15:05 +0300

Spring Cloud Self-study Notes: Eureka Service Registry Building and Simple demo for Service Registry

First declare a pit that the Spring Cloud version must match the Spring Boot version, otherwise the annotation @EnableEurekaServer cannot be imported into the startup application.java The corresponding relationship between Spring Cloud version and Sp ...

Added by 7724 on Mon, 16 Sep 2019 12:38:22 +0300

9 spring-Custom Label Resolution

Original Link: https://my.oschina.net/u/1590001/blog/268194 At this point, we have finished the process of parsing and extracting the default labels for analysis. Maybe there is too mu ...

Added by JD-AM on Sun, 15 Sep 2019 05:47:17 +0300

Scope of Spring 4-bean: Automatic Assembly

Spring automatic assembly xml file <bean id="address" class="com.atguigu.spring.beans.autowire.Address" p:city="BeiJing" p:street="HuiLongGuan"> </bean> <bean id="address2" class="com.atguigu.spring.beans.autowire.Address" p ...

Added by jonker on Sat, 14 Sep 2019 14:56:25 +0300

SpingMVC-exception handling

SpingMVC Exception Handler Annotation test First create a new test method in Spring MVCTest. Java @RequestMapping("/testExceptionHandlerExceptionResolver") public String testExceptionHandlerExceptionResolver(@RequestParam("i") int i){ ...

Added by timcclayton on Sat, 14 Sep 2019 14:38:58 +0300

Custom Layout View

Links to the original text: https://my.oschina.net/u/2385466/blog/547060 Introduction layout If you've ever used an iPhone, you know that almost every iPhone app has a title bar a ...

Added by eosinophil on Fri, 13 Sep 2019 09:03:32 +0300

Android Development and Learning--A Simple Chat Interface for UI

Links to the original text: https://my.oschina.net/mayude/blog/614739 Learn a lot of ui knowledge, here to achieve a chat interface, first of all to achieve a layout xml, the code is a ...

Added by Cagez on Thu, 12 Sep 2019 16:56:30 +0300

Qt Writing Control Property Designer 9-Database Acquisition

I. Preface As a data source, database is widely used in many configuration software, such as specifying database type, filling in database connection information, specifying corresponding database tables and fields, acquisition interval, automatica ...

Added by numan82 on Thu, 12 Sep 2019 04:36:27 +0300

Spring Cloud Learning Notes: Using Ribbon Load Balancing

brief introduction Spring Cloud Ribbon is a client load balancing tool based on Netflix Ribbon. After registering the Ribbon client in the registry, Ribbon can automatically help service consumers call interfaces based on some load balancing algorithm, such as polling (default), random, weighted polling, weighted random, etc. Project introducti ...

Added by kkurkowski on Wed, 11 Sep 2019 13:39:54 +0300

Spring Boot Custom Start Component Development

The core of Start component development is the annotation order of automatic annotation classes, that is, annotation according to conditions. First, let's understand the @Configuration, @Value, @Bean annotations Take the DataSourceAutoConfiguration c ...

Added by BLINDGUY on Wed, 11 Sep 2019 06:57:36 +0300