Vue codemirror code editor usage experience and stepping on pits
In recent work, you need to optimize the previous web side code editor. As a back-end developer, although I'm not professional, I can only bite the bullet. After consulting a lot of materials, I still optimized some contents. Let's share them here. If there is something wrong, please forgive me. After all, it's very tired to play with pure hand ...
Added by michaellunsford on Wed, 02 Mar 2022 06:57:38 +0200
[MyBatis notes] 7 - customize the mapping resultMap, handle the one to many / many to one mapping relationship, handle the consistency of attribute fields, and load MyBatis lazily
Video link: https://www.bilibili.com/video/BV1VP4y1c7j7?p=48&spm_id_from=pageDriver
preparation
(1) New maven project
See the following steps for details: https://editor.csdn.net/md/?articleId=123185097
(2) Create two forms in sql: t_emp,t_dept
t_dept form:
t_emp form:
Add a did to connect with the primary key of the ...
Added by BrettCarr on Tue, 01 Mar 2022 18:32:40 +0200
Configuring and using servlets in IDEA
Configuring and using servlets in IDEA
Crazy God says Java
1. Introduction to Servlet
Servlet is a technology for sun company to develop dynamic websun provides an interface called Servlet in these API s. If you want to develop a Servlet program, you only need two steps:
Write a class to implement the Servlet interfaceDeploy the deve ...
Added by buluk21 on Tue, 01 Mar 2022 10:27:52 +0200
How to publish Android library to Maven central warehouse
preface
This article is used to record how to upload your library to maven central warehouse,
First, we need to register the jira account of sonatype, and then apply to create our own repo. After the official review, we can have our own space;We use gradle's maven publish and signing plug-ins to simplify the operation of packaging and uploadi ...
Added by Caps on Thu, 24 Feb 2022 17:13:41 +0200
Mybatis Learn Notes
Mybatis Learn Notes
I. Understanding Mybatis
MyBatis is an excellent persistence framework. It supports custom SQL, stored procedures, and advanced mappings. MyBatis eliminates almost all JDBC code and setting parameters and getting result sets. MyBatis can configure and map raw types, interfaces, and Java POJO s (Plain Old Java Objects, ...
Added by Chrisww on Wed, 23 Feb 2022 19:19:45 +0200
[prenatal education] java websocket server starting from 0
The full text is completed on the basis of IDEA compiler.
This article is for java beginners who have not learned all kinds of Java frameworks
Most java WebSockets on CSDN adopt the spring boot framework
This article does not use any framework related to spring, but only uses maven to import the websocket library
Reference source: https://g ...
Added by valtido on Sun, 20 Feb 2022 01:44:49 +0200
Integrated java and scala development environment using maven
Git address: https://gitee.com/jyq_18792721831/sparkmaven.git
Create Project
Let's start by creating a generic maven project
Create a project followed by a hello module
Is also a normal maven module
Increase scala dependency
We don't write code in the parent project, the parent project is just for managing the child project, so th ...
Added by ahundiak on Fri, 18 Feb 2022 00:15:40 +0200
Several postures of Idea+Maven playing jar package
Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it
target
Our local projects should be released through Jar package or used by others. Today, I recorded the packaging process of the project completed by le idea and maven.
Using Idea+Ma ...
Added by tinyang on Mon, 14 Feb 2022 17:15:47 +0200
From scratch, use Jenkins to build and publish Pipeline pipeline projects
1, Environment installation and deployment
1. Install JDK
2. Configure environment variables
C:\Program Files\Java\jdk1.8.0_152\bin
3. Install and activate IDEA
-javaagent:D:\IntelliJ IDEA\IntelliJ IDEA 2019.3.1\bin\jetbrains-agent.jar
4. Build a web project
5. Install tomcat server
Configure the IDEA to reco ...
Added by Jamesm on Sun, 13 Feb 2022 14:17:09 +0200
Java project: hospital management system (java+Springboot+ssm+mysql+maven)
Source code acquisition: download from "resources" on the blog home page!
1, Project brief
Function: the project is a hospital management system written with springboot+layui+shiro. The business of the system is relatively complex. There are 36 tables in the database.
The project is divided into outpatient management, inpatient m ...
Added by Seraskier on Fri, 11 Feb 2022 17:35:27 +0200