DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

The Latest Popular Topics

article thumbnail
Sharing Test Classes Between Multiple Modules in a Multi-module Maven Project
Using Maven to effectively test software when test classes are not already packaged by Maven.
April 28, 2016
by Dave Turner
· 56,279 Views · 6 Likes
article thumbnail
Testing Java EE (or Why Integration Tests Are Overrated)
Testing that goes beyond just unit testing and integration testing. Why we should be doing full system testing.
April 27, 2016
by Sebastian Daschner
· 26,070 Views · 7 Likes
article thumbnail
Mocking Method with Wildcard Generic Return Type
[Ivan Zerin provides a primer on mocking methods that contain generic return types.] There are several cases where construction when().thenReturn is not suitable during Unit tests. One of then generic return type. I have faced such issue, let's take a look. There is a method in interface declaration: public interface FooInterface { public Iterable getList(); ... } Implementation looks like this: public class Foo implements FooInterface { public List getList() { ... } ... } At first mocking of such method should not be something unusual: public class UnitTest { @Mock private FooInterface mockFoo; @Test public void someUnitTest() { ... List testList = generateTestList(); when(mockFoo.getList()) .thenReturn(testList); } } But this code won't compile with error: Cannot resolve method 'thenReturn(List). Seems to be some mistake, cause returned type are correct from the interface point of view. This error happening cause compiler can not gurantee that returned type of method getList() will be List. Actually return type of method getList() in this case is Iterable and this means "Return some Iterable object with any objects that extends SomeClass". Let's rename this type as 'X'. So when(mockFoo.getList()) will create object OngoingStubbing> and it has method thenReturn(Iterable). Compiler can not tell what type X before runtime and cannot perform safe cast from List to Iterable (we perfrom actuall call of method thenReturn(List)). Sounds a little tricky but let's assume that SomeClass is standard Java class Number. Then classes Integer and Double are both fulfill the criteria of List. Let's say that as return type of mock we will use List, in this case, compiler should be ready that actual work with code during runtime will be performed with List too, but it is clearly that cast from Double to Integer will be incorrect (try to cast double value 12.6 to int). You could argue that in the case of mockito compiler won't need to bother about the casting of returned type because call of original method would not produce anything, but it is known by mockito. From compiler point of view, it is only Java code, that should be checked for safety and correctness before compiling. Ok, so how we should deal with such cases in mockito? Use doReturn() method: doReturn(testList).when(mockFoo).getList(); Such expression is not type safe, so it were designed for exceprional cases, so use it only when you cannot use standart when().thenReturn(), which is the type-safe, elegant and more readable syntax.
April 27, 2016
by Ivan Zerin
· 44,440 Views · 4 Likes
article thumbnail
Enabling CORS in Node.js [Snippets]
This post shows how to enable CORS in Node. for your cross-domain requests.
April 27, 2016
by Madhuka Udantha
· 239,300 Views · 34 Likes
article thumbnail
Collaborators and Libraries: Java Design Patterns for Success
Should constructors throw exceptions? What can the 1815 Congress of Vienna teach us about good Java design?
April 26, 2016
by Alan Hohn
· 10,670 Views · 7 Likes
article thumbnail
Spring OAuth2 With JWT Sample
Spring Security is an extensible framework for authentication, including support for OAuth 2 and JSON Web Token, two popular choices.
April 26, 2016
by Anh Tuan Nguyen
· 79,087 Views · 11 Likes
article thumbnail
Sorted Pagination in Cassandra
We have a look at how to implement sorted pagination with the popular NoSQL solution Cassandra.
April 26, 2016
by Felipe Fernández
· 13,745 Views · 5 Likes
article thumbnail
Hadoop in Healthcare, Part 1
How Hadoop and open source big data analytics technology are positively helping the healthcare industry become more effective.
April 26, 2016
by Richard Proctor
· 11,056 Views · 4 Likes
article thumbnail
Java 8 New Date And Time Overview
A practical introduction to the new and improved Date & Time API in Java 8. If you've not had chance to review or use it yet then start here!
April 22, 2016
by Siva Prasad Rao Janapati
· 14,865 Views · 5 Likes
article thumbnail
Authentication in Golang With JWTs
Go is an excellent choice for building fast and scalable API's. The net/http package provides most of what you need, but augmented with the Gorilla Toolkit, you'll have an API up and running in no time. Learn how to build and secure a Go API with JSON Web Tokens and consume it via a modern UI built with React.
April 21, 2016
by Adnan Kukic
· 23,313 Views · 8 Likes
article thumbnail
JavaScript MVVM — You’re (Probably) Doing it Wrong
If you are using one of the many frameworks that say they are using JavaScript MVVM, you might not be using it the way it should be used. In this article, Dave Bush defines MVVM, analyzes its advantages, and provides some MVVM best practices to follow.
April 21, 2016
by Dave Bush
· 22,912 Views · 10 Likes
article thumbnail
Deploy to WildFly and Docker From IntelliJ Using Management API
When you are new to both Docker and IntelliJ how do you deploy your Java EE applications? Steve Favez shows you how.
April 21, 2016
by Steve Favez
· 27,442 Views · 11 Likes
article thumbnail
Making Node.js Available to All Users With nvm
When trying to deploy a Node.js application to a remote server, how do we make it so that the user we've created (without sudo privilidges) to run/execute the application can see the necessary libraries needed to run our Node.js application? Read on and find out.
April 21, 2016
by Duncan Brown
· 28,906 Views · 2 Likes
article thumbnail
Using Spring Session for Concurrent Session Control in a Clustered Environment
How a new feature in Spring lets you manage sessions without relying on external repositories.
Updated April 20, 2016
by Joris Kuipers
· 30,307 Views · 17 Likes
article thumbnail
How to Measure the ROI of Your Cloud Spending
Quantifying the cost of cloud ownership is no simple task. Take some of these tips to measure the ROI of your cloud spending.
April 20, 2016
by Darren Perucci
· 6,863 Views · 7 Likes
article thumbnail
Java Champions Get IntelliJ IDEA Ultimate for Free
Are you a Java Champion? Now you can get IntelliJ IDEA Ultimate as yet another reward.
April 18, 2016
by Robert Demmer
· 24,735 Views · 2 Likes
article thumbnail
Default HotSpot Maximum Direct Memory Size
Working with off-heap storage can make a big difference when working with large data sets. But how do you know how much memory you have at your disposal? Read this article and find out!
April 18, 2016
by Dustin Marx
· 41,576 Views · 7 Likes
article thumbnail
Protect Your Immutable Object Invariants in More Complex Java Objects
Learn the basics on how to write robust immutable Java objects and reap the benefits of immutable objects in your code.
April 17, 2016
by Per-Åke Minborg
· 12,575 Views · 11 Likes
article thumbnail
Yes, Java Has Flaws. But...
Is Java the new Cobol? Probably, but Cobol is still running. Java will be in enterprises for at least 20 more years.
April 15, 2016
by Tim Spann DZone Core CORE
· 25,400 Views · 39 Likes
article thumbnail
Properly Shutting Down An ExecutorService
This tutorial will teach you that you don't need to pilot an A-Wing to shut down these ExecutorServices.
Updated April 14, 2016
by T Tak
· 75,382 Views · 11 Likes
  • Previous
  • ...
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • ...
  • Next
  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook
×