编程技术 第1514页
Why it is not possible to extend a final class in Java?-拾光赋

Why it is not possible to extend a final class in Java?

Why it is not possible to extend a final class in Java?, 原文链接:Why it is not possible to extend a final class in Java?
The joy of streams-拾光赋

The joy of streams

The joy of streams,Recently, I have written a class that looked roughly like this: public class Requirement { ... public Requirement(...) { ... } public When getWhen() { ... } publ...
Don't Drink Too Much Reactive Cool Aid-拾光赋

Don’t Drink Too Much Reactive Cool Aid

Don't Drink Too Much Reactive Cool Aid,Cross-posting of my blog article. In the last years, the idea of 'reactive server applications' was being promoted heavily, especially by new...
Couple of words about development of a new static analyzer for Java code-拾光赋

Couple of words about development of a new static analyzer for Java code

Couple of words about development of a new static analyzer for Java code, PVS-Studio static analyzer team, which until recently was searching for bugs and potential vulnerabilities...
Customize parsing and formatting of dates in Java 8-拾光赋

Customize parsing and formatting of dates in Java 8

Customize parsing and formatting of dates in Java 8,In Germany, dates have the format dayOfMonth.month.year. So the day of writing this article is: 17.06.2018 How do you deal with ...
kity的头像-拾光赋kity7年前
05113
Password encoder in Spring Boot 2-拾光赋

Password encoder in Spring Boot 2

Password encoder in Spring Boot 2,Hi, Since Spring boot 2.x there was a few changes in Spring Security, so, I will show you how to encode passwords in Spring boot 2 (which comes wi...
Kotlin - Is it time to switch from Java?-拾光赋

Kotlin – Is it time to switch from Java?

Kotlin - Is it time to switch from Java?,Kotlin is now official part of the Android development. But I am trying to find out if existing Android app should move to kotlin now. I am...
Using our continuous integration tool to continuously integrate our continuous integration tool-拾光赋

Using our continuous integration tool to continuously integrate our continuous integration tool

Using our continuous integration tool to continuously integrate our continuous integration tool,During the development of our feature flagging tool Bullet Train, we got to the poin...
What is `map` in a Java Stream-拾光赋

What is `map` in a Java Stream

What is `map` in a Java Stream,Originally published at www.gunnargissel.com Mapping is how to convert one type of object to another with a stream. Say you have a set of Fruit and y...
Bullet Train: Using feature flags and remote config in CI-拾光赋

Bullet Train: Using feature flags and remote config in CI

Bullet Train: Using feature flags and remote config in CI,Asking a lot of my developer friends, it seems like CI and CD are two practices that people either already employ or wish ...
Filter Null Values from a List with Java8 Lambda-拾光赋

Filter Null Values from a List with Java8 Lambda

Filter Null Values from a List with Java8 Lambda,A common task with Java streams is to clean up the input data so later steps can work without thinking too hard. Likely the #1 most...
HowTo: Integrate a MySQL Database into your Java Spring Boot GraphQL Service-拾光赋

HowTo: Integrate a MySQL Database into your Java Spring Boot GraphQL Service

HowTo: Integrate a MySQL Database into your Java Spring Boot GraphQL Service,NOTE: Please be aware this article is now out of date as the tech has moved on since I wrote it in 2019...