Use Blog Park RSS and Quartz.NET to periodically push blog posts in Web Wechat applications

This article introduces how to use Blog Garden RSS and Quartz.NET to push blog post content regularly in the application of Web Wechat. First, do a simple introduction and code analysis to Quartz.NET, master the processing of job scheduling, then how to get the RSS content of Blog Garden and combine it with the mass distribution of Wechat messa ...

Added by dreamer on Wed, 17 Jul 2019 19:41:40 +0300

Android Architecture Design--Reflections on View Boundary Division

Copyright Statement: LooperJing Original articles can not be reprinted without the permission of the blogger! In the previous articles, I summarized MVP, MVVM, using generics for MVP to avoid class explosion. To some extent, the implementation of these schemes has successfully separated View from business logic. However, for a complex interface ...

Added by Duswa on Tue, 16 Jul 2019 21:59:02 +0300

Android Alipay SDK Development Notes

I. Preparations Download Development Kit https://b.alipay.com/order/productDetail.htm?productId=2014110308141993&tabId=4#ps-tabinfo-hash In the "Alipay wallet payment interface development kit" under the compression pack, there are Andoid using Alipay's JAR and Demo. 2. Create Alipay applications Application creation in Alipay op ...

Added by UKlee on Tue, 16 Jul 2019 21:32:03 +0300

Animation in Android (frame animation, interpolation animation, attribute animation)

Generally speaking, Android animation can be divided into two categories, the original traditional animation and the attribute animation after Android 3.0. Traditional animation includes: Frame Animation and Tweened Animation. Let's talk about the use and characteristics of various animations. Frame animation: is the easiest kind of anima ...

Added by rofl on Tue, 16 Jul 2019 02:01:57 +0300

Spring4-Container 9-Custom bean Feature

Spring provides several marker interface s that alter the behavior of beans in containers; they include InitializingBean and Disposable bean.The beans implementing both interfaces invoke the lattPropertiesSet() method of the former and the destroy() method of the latter when initializing and destructing. In modern Spring applications, The J ...

Added by [L3]sPARTAN on Mon, 15 Jul 2019 19:20:29 +0300

Android Gradle global configuration, logoff, multi-channel packaging

What is Gradle? Gradle is an advanced build system as well as an advanced build toolkit allowing to create custom build logic through pluginsGradle is an advanced build system and an advanced build tool that allows you to create custom build logic through plug-ins. Why use gradle? Gradle is an excellent build system and build tool that allows y ...

Added by vasse on Mon, 15 Jul 2019 02:39:58 +0300

A simple introduction to spring data elaticsearch

In recent projects, elatic search is used to do data statistics, which I haven't studied before, just to learn now, we use spring data elatic search to use elatic search, which will be very simple to use. Let's summarize and record this process. There are many examples on the internet, but none of them is complete, and there are always fewer an ...

Added by lightkeepr on Sun, 14 Jul 2019 22:03:54 +0300

Android Foundation - RecyclerView Drag-and-Drop Sort Side Slip Delete

Android Foundation - RecyclerView Drag-and-Drop Sort Side Slip Delete Well, there are not too many explanations about Recycler View. You should all know it better. Hongyang Blog has a more detailed explanation: Android RecyclerView uses fully analytical experiential art-like controls . The purpose of writing this blog is that I want to r ...

Added by KresentPhresh on Sun, 14 Jul 2019 21:42:50 +0300

Parsing xml files using SAX

SAX parsing using JAXP (XMLReaderFactory, XMLReader, SAXParserFactory, and SAXParser) 1. We do this through XMLReaderFactory, XMLReader, as follows 1.adopt XMLReaderFactory Establish XMLReader object XMLReader reader = XMLReaderFactory.createXMLReader(); 2. Set Event Processor Object reader.setContentHandler(new MyDefaultHandler()); ...

Added by Warz on Sat, 13 Jul 2019 20:50:02 +0300

Create a Struts2 web project

Preface Build a Struts2 web project step by step from scratch. Tool: eclipse Setup process First, create a dynamic Web project with the following structure: Then we add the jar packages needed for some projects, put them under the lib directory under WEB-INF, and add them to the project: jar package download address: http://download. ...

Added by CodeBuddy on Sat, 13 Jul 2019 19:53:14 +0300