Yes, Spring Security can be complex, from the more advanced
functionality within the Core to the deep OAuth support in the
framework.
I built the security material as two full courses - Core and
OAuth, to get practical with these more complex scenarios. We
explore when and how to use each feature and code through it on
the backing project.
DbSchema is a super-flexible database designer, which can
take you from designing the DB with your team all the way to
safely deploying the schema.
The way it does all of that is by using a design model, a
database-independent image of the schema, which can be shared in a
team using GIT and compared or deployed on to any database.
And, of course, it can be heavily visual, allowing you to
interact with the database using diagrams, visually compose
queries, explore the data, generate random data, import data or
build HTML5 database reports.
Slow MySQL query performance is all too common. Of course
it is. A good way to go is, naturally, a dedicated profiler that
actually understands the ins and outs of MySQL.
The Jet Profiler was built for MySQL only, so it can do
things like real-time query performance, focus on most used tables
or most frequent queries, quickly identify performance issues and
basically help you optimize your queries.
Critically, it has very minimal impact on your server's
performance, with most of the profiling work done separately - so
it needs no server changes, agents or separate services.
Basically, you install the desktop application, connect to your MySQL
server, hit the record button, and you'll have results
within minutes:
The feedback is available from the minute you are writing
it.
Imagine being alerted to any regression or code smell as you're
running and debugging locally. Also, identifying weak spots that
need attending to, based on integration testing results.
We rely on other people’s code in our own work. Every
day.
It might be the language you’re writing in, the framework you’re
building on, or some esoteric piece of software that does one thing
so well you never found the need to implement it yourself.
The problem is, of course, when things fall apart in
production - debugging the implementation of a 3rd party
library you have no intimate knowledge of is, to say the least,
tricky.
Lightrun is a new kind of debugger.
It's one geared specifically towards real-life production
environments. Using Lightrun, you can drill down into running
applications, including 3rd party dependencies, with real-time
logs, snapshots, and metrics.
Learn more in this quick, 5-minute Lightrun tutorial:
Jackson-jr is a lightweight JSON processing library for Java, designed to provide a simpler and smaller alternative to the original Jackson library. With its small footprint and easy-to-use API, Jackson-jr is an excellent choice for casual JSON reading and writing scenarios.
In this guide, we will explore the key features and usage of Jackson-jr, along with examples and best practices.
2. Getting Started With Jackson-jr
Jackson-jr offers a lightweight and efficient way to handle JSON data in Java applications. It provides a simple API for working with JSON objects and arrays, making it easier to parse, generate, and manipulate JSON data.
First, we must include the Jackson-jr library in our project. We can do this by adding the desired version of the Jackson-jr dependency to our project’s build configuration file.
For Maven, we can add the dependency to our pom.xml file:
The base object for working with Jackson-jr is the JSON object. A very important and not to forget fact about the JSON object: every JSON instance is fully immutable and thread-safe. We can use them however we want, a Singleton instance, a Spring Bean, or even construct individual objects. We can pass the same instance between different threads, as it is fully immutable.
3.1. Creating JSON Objects and Arrays
Creating JSON objects and arrays: Jackson-jr provides a convenient API for creating JSON objects and arrays. We can use classes like LinkedHashMap to represent JSON objects and ArrayList to represent JSON arrays.
The JSON object is a LinkedHashMap. We can easily add properties to it using the LinkedHashMap.put() method and get properties with the LinkedHashMap.get() method.
Jackson-jr allows us to easily convert Java objects to JSON strings and vice versa. We can configure the writer with desired options, such as pretty-printing or custom date formats, and then use it to write objects as JSON strings.
Jackson-jr supports complex object structures, including nested objects and arrays. By properly defining the structure of our Java classes and their relationships, Jackson-jr can handle the serialization and deserialization of complex JSON data.
Jackson-jr supports various annotations, such as @JsonProperty, to customize the serialization and deserialization process. These annotations allow us to control the names of properties, specify date and time formats, and handle other customization scenarios. We can see a list of all the supported annotations in their official Github project for annotations.
Jackson-jr has a list of feature customization that we can use to customize the input and output of our serialization and deserialization, customization like pretty print, write null properties, etc. The easiest way to see all of them would be right in the base code.
Jackson-jr allows us to create custom serializers and deserializers to handle specific data types or complex serialization scenarios. By implementing the appropriate interfaces, ValueWriter, and extending the provided classes, ValueReader and ReadWriterProvider, we can define how our custom objects should be serialized and deserialized.
Jackson-jr does not support java.time.* package, but we can add this with custom serializers and deserializers:
public class CustomDateSerializer implements ValueWriter {
@Override
public void writeValue (JSONWriter jsonWriter, JsonGenerator jsonGenerator, Object o) throws IOException {
jsonGenerator.writeString(o.toString());
}
@Override
public Class<?> valueType () {
return LocalDate.class;
}
}
public class CustomDateDeserializer extends ValueReader {
private final static DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MMM-dd");
public CustomDateDeserializer () {
super(LocalDate.class);
}
@Override
public Object read (JSONReader jsonReader, JsonParser jsonParser) throws IOException {
return LocalDate.parse(jsonParser.getText(), dtf);
}
}
After we register them, we can start serializing and deserializing LocalDate objects:
public class MyHandlerProvider extends ReaderWriterProvider {
@Override
public ValueWriter findValueWriter (JSONWriter writeContext, Class<?> type) {
if (type == LocalDate.class) {
return new CustomDateSerializer();
}
return null;
}
@Override
public ValueReader findValueReader (JSONReader readContext, Class<?> type) {
if (type.equals(LocalDate.class)) {
return new CustomDateDeserializer();
}
return null;
}
}
Person person = new Person("John Doe", 30, LocalDate.now());
JSON jsonMapper = JSON.builder().register(new JacksonJrExtension() {
@Override
protected void register (ExtensionContext extensionContext) {
extensionContext.insertProvider(new MyHandlerProvider());
}
}).build().with(JSON.Feature.PRETTY_PRINT_OUTPUT);
String json = jsonMapper.asString(person);
Person deserializedPerson = jsonMapper.beanFrom(Person.class, json);
5. Jackson-jr vs. Jackson
Jackson-jr
Jackson
Smaller jar
Bigger jar
Fewer features
More complex features
Better for simpler serialization and deserialization
Better for more complex serialization and deserialization
Faster start-up time
Slower start-up time
Simpler API
More complex API
6. Conclusion
Jackson-jr offers a lightweight and user-friendly approach to JSON processing in Java applications. With its simplified API, customization options, and efficient performance, it is an excellent choice for developers who need a lightweight JSON processing library without compromising on functionality.
As always, the source code for the examples is available over on GitHub.
Course – LS (cat=JSON/Jackson)
Get started with Spring 5 and Spring Boot 2, through the Learn Spring course: