SHFormLayout, Android Form Mapping Framework, Quickly Generates Form Layout
Download
Download the latest JAR or grab via Maven:
<dependency>
<groupId>com.sh.zsh.code</groupId>
<artifactId>shform</artifactId>
<version>3.2.2</version>
<type>pom</type>
</dependency>
or Gradle: ...
Posted by nkyoung1 on Sun, 21 Apr 2019 14:36:34 -0700
Full Text Retrieval Engine and Tool Lucene Solr
Full Text Retrieval Engine and Tools
lucence
lucence is a full-text search engine.
The usage steps of lucence code level are as follows:
Create a document (org.apache.lucene.document.Document) and add fields to it through the add method of Document (lucence.document.Field)
Create lucence.index.IndexWriter and add many built Documents through a ...
Posted by Sassy34 on Sun, 21 Apr 2019 12:33:33 -0700
maven multi-module and inheritance
maven has the function of multi-module aggregation, that is, it can reflect the relationship between modules by parent-child relationship, and associate each module.
Firstly, we introduce the module with inheritance dependency (multiple modules are not only associated with public modules, but also interdependent with each other).
Definitio ...
Posted by IwnfuM on Sat, 20 Apr 2019 23:48:35 -0700
Maven Warehouse - Introduction to Private Service
What is private service?
Private servers, or private servers, are an internal Maven repository through which a company's internal Maven project needs to download dependent packages and plug-ins. Nexus is a common private Maven server, which is usually used internally.
Common Functions and Introduction
Designate your Maven project to priv ...
Posted by ducey on Sat, 20 Apr 2019 09:12:33 -0700
Java Annotation Processor
Some basic concepts
Before we start, let's first state a very important issue: we don't discuss annotations that are processed at Runtime through a reflection mechanism, but rather annotations that are processed at Compile time.
Annotation Processor is a tool of javac that scans and processes annotations at compile time. You can customize ann ...
Posted by felodiaz on Fri, 19 Apr 2019 11:48:33 -0700
Springmvc exception handling
1 DescriptionIn the development of J2EE project, it is inevitable to encounter all kinds of predictable and unpredictable exceptions that need to be handled, whether it is the database operation process at the bottom, the business process or the control process. Exceptions are handled separately in each process. The code coupling of the system ...
Posted by Hellbringer2572 on Sun, 07 Apr 2019 10:30:31 -0700
Configuration of a single applet using weixin-java-miniapp configuration
In the development of back-end interface for small programs, using weixin-java-miniapp module in weixin-java-tools can often achieve twice the result with half the effort.
Introducing weixin-java-tools
stay https://mvnrepository.com/ Search weixin-java-miniapp and enter the Wechat applet Java SDK project.
Select the appropriate official versio ...
Posted by scuzzo84 on Thu, 28 Mar 2019 21:48:29 -0700
spring and UEditor Combination
Preface
The Spring Festival is boring, go to get rich text editor, then Baidu, many say Baidu's UEditor is good, and then go to the official website to take a look at the document, it is very simple and easy to use. Then I want to combine this with my own spring project. It's still GG when uploading pictures. Baidu Google once uploaded picture ...
Posted by didgydont on Thu, 28 Mar 2019 16:24:28 -0700
IDEA 2016.1 Maven Spring MVC Use Tutorial (1)
1. Software versions
IntelliJ IDEA 2016.1
jdk1.8
maven3.3.9
tomcat 8.5.11 or jetty
2. Building a webapp with maven skeleton
Select create new project-Maven-Create from archetype. Find the maven-archetype-webapp skeleton, and then next.
Enter GroupId and ArtifactId for the next step.
Fill in the local maven environment, where you ...
Posted by tnkannan on Thu, 28 Mar 2019 07:15:30 -0700
Use of gRPC in RPC
This article describes the process of using gRPC in Java. Generally speaking, it consists of the following three steps1) Define the services provided in the. proto file2) Compile files using protocol buffer compiler3) Use gRPC API to create and invoke the server and client.
Download and install the required software
1)Protocol BuffersStructure ...
Posted by MeanMrMustard on Wed, 27 Mar 2019 14:54:29 -0700