Soa architecture splits the presentation layer and service layer into independent projects [transformation 1]

Delete the web project reference first image.png Then cut the E3 manager web in the folder to the same level as E3 parent. image.png After shearing image.png And then start the transformation in eclipse. e3-manager pom.xml < module > E3 Manager Web < / module > delete Then change E3 manager service ...

Posted by s_r_elliott on Wed, 23 Oct 2019 15:08:34 -0700

HttpClient request URL character set transcoding

The problem is that I can send httpclient request with eclipse as follows. But I will return 400 in idea. Why not??? excuse me? package com.vol.timingTasks; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.auth.AuthScope; import org.apache.http.auth.Us ...

Posted by Bobo the Bugbear on Tue, 22 Oct 2019 09:08:38 -0700

ssl/tls encryption of Emqtt

After last week, it took two or three days this week to implement emqtt's ssl/tls encryption. The main process is still referred to: https://blog.csdn.net/a704397849/article/details/88885198#commentsedit At the last step, when subscribing to messages with mosquitto_sub, there are always problems: Contact the author of the reference article, ...

Posted by tomtimms on Tue, 01 Oct 2019 17:31:00 -0700

Mybatis automatically generators Config. XML

Install plug-ins first Eclipse: help - > Eclipse Marketplace... - > find input box, enter MyBatis Generator - > search completed, and click Install in the bottom right corner of the latest version (if it is Installed, you don't need to install it) idea to be added... Create an xml file un ...

Posted by eco on Mon, 30 Sep 2019 15:32:47 -0700

Java Self-Study - Number and String Formatting Output

Java uses printf or format for formatted output Step 1: Format the output If formatted output is not used, string joins are required, and splicing can be cumbersome if there are many variables Use formatted output to be concise and clear %s represents a string %d denotes a number %n means line break package digit; public class TestNumber { ...

Posted by ThEMakeR on Sun, 29 Sep 2019 20:47:34 -0700

Understanding Spring Core Technology 06 - Manually Implementing AOP Top

Original link: https://blog.csdn.net/qq_38701478/article/details/82785541 Spring is said in many places to be a one-stop solution with IOC and AOP as the core, that is, a framework.The previous blogs explained in detail the principles of IOC implementation in Spring and how to manage the dependencies be ...

Posted by bh on Tue, 24 Sep 2019 19:59:05 -0700

Python Standard Module--logging

Original: https://www.cnblogs.com/zhbzz2007/p/5943685.html Introduction of 1 logging Module logging module is a standard module built in Python, which is mainly used to output running logs. It can set the level of output logs, log save path, log file rollback, etc. Compared with print, it has the following advantages: By setting different l ...

Posted by cbrian on Tue, 03 Sep 2019 03:03:38 -0700

Introduction to Spring Lecture 3 - Configuration and Management of Bean s in Spring

stay Getting Started with Spring: A Quick Start to the Spring Framework In this lecture, we have started Spring quickly. Now let's start with the first lecture and explain the configuration and management of Bean s in Spring, but it's all based on XM ...

Posted by Eggzorcist on Sat, 31 Aug 2019 18:05:56 -0700

Java Foundation reviews keywords, singleton design patterns, basic classes, and internal classes

Java Basic Review (3) final keyword The final-modified content can no longer be changed. final-modified classes cannot have subclasses, that is, they cannot be inherited When modifying a member variable, the variable is an end value and cannot be changed any more. It needs to be defined with an initi ...

Posted by ilikephp on Sun, 28 Jul 2019 23:57:09 -0700

JAVA Learning Notes - Member Variables, Local Variables, Static Variables

Recent revision of JAVA related knowledge, in the book appeared a variety of variable types such as: member variables, local variables, static variables, and so on. I feel a little bit dazzling, once again collate the knowledge of variables, if there are errors, also ask you to put forward. On Variabl ...

Posted by hollyspringer on Fri, 26 Jul 2019 02:39:18 -0700