排序
Java – Using Spring to create a REST API
Java - Using Spring to create a REST API,Introduction Spring is one of the most popular frameworks for Java web development. Extensions of it, namely SpringBoot and Spring Initiali...
What is the equivalent of a static variable in JS
What is the equivalent of a static variable in JS,I am starting to get my feet wet with js, I am wondering is there an equivalent to Java static variable in node js. 原文链接:What...
Effective Java Tuesday! In Public Classes, Use Accessors, Not Public Fields
Effective Java Tuesday! In Public Classes, Use Accessors, Not Public Fields, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods ...
Why you should favor composition over inheritance
Why you should favor composition over inheritance,Composition has always had some advantages over inheritance. Creating deep inheritance hierarchies leads to brittle/inflexible cod...
JSF (JavaServer Faces) 2.0: The Story Book
JSF (JavaServer Faces) 2.0: The Story Book,JSF stands for Java ServerFaces and this story book will explain the most important parts of this Java EE framework. Security Working wit...
On the Open-closed principle (Decoupling & Abstraction)
On the Open-closed principle (Decoupling & Abstraction), Abstraction (2 Part Series) 1 Interfaces Explained 2 On the Open-closed principle (Decoupling & Abstraction) Here, I'll...
There is best way build blueprint for Springboot project?
There is best way build blueprint for Springboot project?, 原文链接:There is best way build blueprint for Springboot project?
DeepCode’s Top Findings #11: Synchronizing Strings
DeepCode's Top Findings #11: Synchronizing Strings, DeepCode Top Findings (13 Part Series) 1 DeepCode’s Top Findings #1: Java Date (This one made me dizzy) 2 DeepCode’s Top Findi...
Lists
Lists, Language Comparison (6 Part Series) 1 Looping with Foreach 2 Comparison of Languages ... 2 more parts... 3 Anonymous Class 4 Lists 5 Indirect Access (Pointers) 6 Substring/S...
How to run SPA webapp on Spring Boot 2.x
How to run SPA webapp on Spring Boot 2.x,TL;DR scroll down, get the sources below and taste it. Most common web server with SPA flavor, All routes will forward to /index.html. Yes....
Identifying a high CPU consuming thread
Identifying a high CPU consuming thread,Every now and then we find ourselves in situations when a single Java process is consuming a high percentage of CPU. After investigating and...
Don’t use non-test constants in unit tests
Don't use non-test constants in unit tests,Every developer wants to promote code reuse. Generally, reuse is a good thing. It makes for more maintainable and more correct code. Ther...