Learning and interpretation of Java RMI

Write in front # Following the previous article, this article mainly looks at the source code of the whole RMI process and makes a simple analysis RMI source code analysis # Let's review the RMI process first: Create a remote object interface (RemoteInterface)Create a remote object class (RemoteObject) to implement the remote object interfa ...

Posted by zoobooboozoo on Sat, 30 Oct 2021 00:52:36 -0700

Image building without Dockerfile: BuildPack vs Dockerfile

In the past work, we have built a technical platform using microservices, containerization and service choreography. In order to improve the R & D efficiency of the development team, we also provide a CICD platform to quickly deploy the code to the Openshift (enterprise class Kubernetes) cluster. The first step of deployment is the contain ...

Posted by webbwbb on Thu, 28 Oct 2021 23:19:49 -0700

Maven installation and configuration

install Download: http://maven.apache.org/download.cgi Generally, zip: After downloading, select a path to unzip (unzip to a non Chinese file directory) Enter environment variable I don't know how to enter. Refer to my Java installation blog Add maven path to path cmd validation, enter mvn -version Configure local and private warehouses ...

Posted by mellis95 on Thu, 28 Oct 2021 22:50:27 -0700

Spring framework and Ioc (inversion of control) & three parameter transfer methods of Spring & the integration of spring and tomcat

Foreword: the knowledge to share today is the Spring framework The code word is not easy. Give me a praise Reprint, please explain! Development tool: eclipse catalogue Spring framework overview ① What is the Spring framework ② Advantages of Spring framework ③ Spring architecture   Ioc (control reversal) and cases Three Spring pa ...

Posted by prcollin on Thu, 28 Oct 2021 06:54:24 -0700

Jinkens+nexus+maven installation and deployment in CentOS 7

1, JDK installation It is recommended to use manual installation instead of using yum to install openjdk; The current installed directory is: /home/jdk/jdk1.8.0_291/bin/java /home/jdk/jdk1.8.0_291/jre/bin/java 2, nexus installation 1. Download nexus Download the installation package official website: https://help.sonatype.com/repomanager3/ ...

Posted by gj6kings on Thu, 28 Oct 2021 03:44:02 -0700

Maven configuration and use

ⅩⅥ.# ⅩⅥ.Maven Maven configuration 1. Decompress maven compressed package (3.2.1) 2. Set the localrepository as your local repository (where the jar package is placed, usually the same level directory as maven), and set the mirror as the image of Alibaba cloud's central repository. conf–>settings.xml <!--Modify your local jar Lo ...

Posted by Angry Lettuce on Thu, 28 Oct 2021 01:47:33 -0700

1 Introduction and initial experience of flowable workflow

1 Introduction      Flowable Official website address: https://flowable.com/open - source/      Flowable The project provides a series of compact and efficient open source business process engines. They provide a workflow and business process management (BPM) for developers, system administrators, and business users )Platform. ...

Posted by Tibster on Sat, 23 Oct 2021 02:01:39 -0700

mybatis learning notes-04

1. Set log Logs can facilitate our troubleshooting. They are not enabled by default. They need to be set in the core configuration file. name and value should be consistent with the official documents! 1.1 default log <!--Set log default configuration--> <settings> <setting name="logImpl" value="STDOUT_LOGGING"/&gt ...

Posted by killerz on Fri, 22 Oct 2021 21:06:55 -0700

How to create Maven aggregation project (build microservice project)

1. Build an aggregation project in idea. Both the parent project and the child project are module s. In the pom file of the parent project, do the following: In the 1.1 POM file, unified version management is configured <dependencyManagement> <dependencies> <!--spring boot Core dependent version definition(s ...

Posted by arkleyjoe on Fri, 22 Oct 2021 20:15:30 -0700

ssm integration framework

ssm integration framework is to integrate mybatis, spring and spring MVC to obtain a complete and portable project framework, which can be developed according to this framework in future projects. Before consolidation, create a database smbms, and then add the user table. ssm integration steps: 1. First create a maven project with a blank tem ...

Posted by johnrcornell on Thu, 21 Oct 2021 07:57:34 -0700