Hopp til hovedinnhold

Innhold om Java

Totalt 25 innlegg

Side 2 av 2

IntelliJ Ninja Tricks

Java
Artikkel (3 min)
Fra Ketil S. Velle
10.12.2019

As a developer I spend most of my time at work in my IDE, for me that IDE is IntelliJ IDEA. During these years I have learned a few tricks, some useful keyboard-shortcuts and found a few plugins that have helped me be more effective in my day-to-day work. I want to share these lessons with you in the form of 4 IntelliJ ninja tricks!

Useful new features in JUnit 5

Java
Artikkel (3 min)
Fra John Ringø
09.12.2019

Manage your dependencies

Java
Artikkel (4 min)
Fra Sindre Nordbø
08.12.2019

During an application's lifespan you've probably added quite a few dependencies. But are all of them necessary? And are you using some libraries you're not even aware of? Today I'd like to talk a little bit about a maven plugin I'm a big fan of: maven-dependency-plugin.

Project Lombok

Java
Artikkel (3 min)
Fra Nicklas Utgaard
07.12.2019

Want to use the var keyword, but your team is stuck on Java 8? Lombok can help you. Sick and tired of writing and maintaining getters and setters? Lombok can help you.

Hidden memory costs

Java
Artikkel (5 min)
Fra Tia Firing
06.12.2019

Get started with JUnit 5

Java
Artikkel (3 min)
Fra John Ringø
05.12.2019

JUnit 5 was released two years ago. Are you still running your tests with JUnit 4.12? Let’s change that, and get you started with JUnit 5.

Never use toString() for behaviour

Java
Artikkel (3 min)
Fra Rune Flobakk
04.12.2019

Every object in Java has a toString() method which can be called to get a String-representation of any object at hand. If left unoverridden, it only yields a description of its class and hash code, and not really useful for much.

Tips and tools for running Java apps in a container

Java
Artikkel (4 min)
Fra Even Holthe
03.12.2019

These days everything can run in a container. It may be databases, continuous integration systems, esoteric hobby projects and even Windows. In this article I’ll shine a light on various tips and tools that might be helpful when packaging Java based applications for running in containers.

Dependency injection, what is it and how does it work?

Java
Artikkel (6 min)
Fra Nicklas Utgaard
02.12.2019

Most developers will at some point be exposed to a dependency injection framework, and at first glance the whole thing can seem magical and hard to understand. Here we'll try to create a conceptual model of how DI-frameworks work.

Thread safety in Java

Java
Artikkel (4 min)
Fra Tia Firing
01.12.2019