Maven Nexus Private Library Setup with idea Development Configuration
1. Set up Nexus private server
Environment preparation:
OS:
[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
JDK Installation
Download address:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
tar -xzf jdk1.8.0_121.tar.gz
mkdir /usr/j ...
Added by alonso on Wed, 15 Jul 2020 19:21:43 +0300
Spring source code interpretation of "IOC container 2-Bean loading process"
In the last article, we implemented a simple IOC container. In this article, we will introduce the implementation of Spring IOC container.
1. Preparation
In order to learn the source code implementation of Spring, we need to prepare the source code environment of Spring. At this time, we generally ...
Added by djg_uk on Tue, 30 Jun 2020 09:33:14 +0300
Fundamentals of Java EasyExcel - Reading
preface
Always believe that good things are about to happen
background
Some time ago, I encountered such a problem when crawling the website data. There is a data source. Because of the large amount of data, it is not displayed on the page, only a download button is provided. Now it is necessar ...
Added by pipe_girl on Thu, 25 Jun 2020 13:20:40 +0300
ActiveMQ encoding implementation
1. ActiveMq coding implementation
Create a new maven project corresponding to pom.xml Some contents of the file are as follows. jdk is 1.8 and other configurations are generated automatically.
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactI ...
Added by IcedEarth on Wed, 24 Jun 2020 08:20:44 +0300
Explosion series: in depth exploration of automatic construction technology of Gradle
0
preface
Obviously, Gradle is a powerful build tool, and many articles only treat it as a tool. However, Gradle is not only a powerful build tool, it looks more like a programming framework. The composition of Gradle can be divided into the following three aspects:
1) , groovy core syntax: including groovy basic syntax, closure, dat ...
Added by datoshway on Wed, 24 Jun 2020 04:54:07 +0300
Authentication and authorization of spring security oauth2.0
In addition to oauth and shiro, we learn oauth 2.0 here
1.1
Authentication and authorization are two basic concepts to solve software system security. Authentication is to verify whether the user's identity is legal, and authorization is to verify whether the user has the authority to operate resou ...
Added by phpnwx on Sun, 21 Jun 2020 13:26:10 +0300
IDEA builds Spring Boot project
What is Spring Boot
Spring Boot is a new framework provided by the Pivotal team, which is designed to simplify the initial construction and development process of new spring applications. The framework uses a specific way to configure, so that developers no longer need to define a templated configurat ...
Added by phpfreakjav on Tue, 16 Jun 2020 07:11:02 +0300
Using maven to create spring project registration bean, running successfully
1: Project creation and configuration
1.
2 if your maven warehouse is not under the default.. / user / directory, modify the settings settings, and then pom.xml Add spring dependency in. Note that you need to re-enter it even if it is not reported as red after adding
3. Create a ...
Added by Hellusius on Mon, 15 Jun 2020 08:56:53 +0300
21, Spring cloud Alibaba Nacos service registration and configuration center
Spring cloud Alibaba Nacos service registration and configuration center
About Nacos
Why Nacos
The first four letters are Naming and Configuration, and the last s is Service
What is it?
A dynamic service discovery, configuration management and service management center easier to build cloud nat ...
Added by luckybob on Thu, 11 Jun 2020 06:08:17 +0300
Simple use of redis distributed lock
RedisLock -- make Redis distributed lock simple
catalog
1. Project introduction
2. Fast use
2.1 introducing maven coordinates
2.2 register RedisLock
2.3 use
3. Participation and contribution
4. Contact the author
5. Open source protocol
1. Project introduction
This project mainly simplifies the operation of redis distributed transact ...
Added by work_it_work on Sat, 06 Jun 2020 05:57:21 +0300