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
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Because the DevOps movement has redefined engineering responsibilities, SREs now have to become stewards of observability strategy.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

The Latest Coding Topics

article thumbnail
Constructor or Setter?
When creating an object should we inject everything at construction time or specify optional attributes via setters.
February 26, 2016
by Sebastian Malaca
· 32,308 Views · 48 Likes
article thumbnail
Programmatically Extract or Unzip Zip, Rar Files and Check
In this post, we will see how we can extract or unzip the uploaded files and check for some files in it in a programmatic manner. We will use a normal MVC application to work with this demo. Read on for more info.
February 26, 2016
by Sibeesh Venu
· 9,442 Views · 2 Likes
article thumbnail
How to Configure JUnit Listeners
A tutorial from one of our DZone users on how to set up JUnit listeners using Maven and JUnit APIs.
February 26, 2016
by Gaurav Srivastava
· 21,025 Views · 4 Likes
article thumbnail
Fix for “Could Not Connect to the Debugger” While Deploying Xamarin Forms Apps to the Visual Studio Android Emulator
If you've encountered this issue before, author Joost van Schalk discusses how to correct the problem so you can move on with your debugging!
February 26, 2016
by Joost van Schaik
· 18,055 Views · 3 Likes
article thumbnail
Log Management in Spring Boot
A tutorial on how to use Spring Boot to log in an output file, and configure where Spring will store your logs.
February 25, 2016
by Nicolas Fränkel DZone Core CORE
· 4,533 Views · 4 Likes
article thumbnail
Page Objects Refactored: SOLID Steps to the Screenplay/Journey Pattern
Automated web tests should follow good object-oriented design principles, too.
February 24, 2016
by Antony Marcano
· 56,089 Views · 14 Likes
article thumbnail
Generate Database Scripts With Data In SQL Server
In this post, let's take a look at how we can generate SQL Server scripts of our database with existing data.
February 24, 2016
by Sibeesh Venu
· 306,136 Views · 7 Likes
article thumbnail
Kill Your Dependencies: Java/Maven Edition
Learn how to kill your dependencies in Java/Maven with these tips, like shooting for zero dependencies, and NOT including Spring.
February 23, 2016
by Sam Atkinson
· 42,135 Views · 36 Likes
article thumbnail
SAML Single Sign-On With JBoss Wildfly and PicketLink
To enable SAML Single Sign-On in Wildfly, you also need to enable SSL for the inbound connection / call back when the users browser sends their token supplied by the Identity Provider to avoid man in the middle attacks. Read on for more information.
February 23, 2016
by Brett Crawley
· 16,675 Views · 7 Likes
article thumbnail
Choosing a Microservices Deployment Strategy Part 6
Here's part 6 of our microservices architecture, with a focus on deployment strategy!
February 23, 2016
by Chris Richardson
· 44,699 Views · 9 Likes
article thumbnail
A Second Generation Reactive Foundation for the JVM
Awesome new reactive platform for JVM development.
February 22, 2016
by Josh Long
· 11,439 Views · 9 Likes
article thumbnail
Insights From Stackoverflow: Most Voted for Spring 4 Questions
Spring 4 is widely used, but as with any technology, there are loads of questions. Here are the most asked and answered questions on Stackoverflow, like differences in component and controller annotations, and what the Spring framework is actually used for.
February 20, 2016
by Alex Theedom
· 11,995 Views · 15 Likes
article thumbnail
Angular JS Tutorial – MVC and MVVM Design Patterns
In the first part of a series on Angular JS tutorials, the author walks through some design patterns.
February 20, 2016
by Andrey Prikaznov
· 66,581 Views · 9 Likes
article thumbnail
Real-time Data Pipelines with Kafka Connect
Information about Kafka Connect sourced from Spark Summit East 2016.
February 19, 2016
by Tim Spann DZone Core CORE
· 16,204 Views · 5 Likes
article thumbnail
Don't be Careless With Groovy (Un)checked Exceptions
Groovy language introduced many interesting features from Java programmer's point of view. One of them is the lack of differentiation between checked and unchecked exceptions - a nice quality for programmers who struggled with checked exceptions requirements. It turns out, however, that using this neat Groovy feature with existing frameworks can sometimes be tricky which I've experienced lately. I worked with relatively straightforward microservice written in Groovy. It was built on top of Spring Boot 1.3. Among others, it used @RestController to define REST endpoints and @ControllerAdvice to handle exceptions thrown by the controller or its internals. Very simplified example code looks like this (complete source code can be downloaded from https://github.com/yu55/groovy-undeclared-throwable-demo ): import org.springframework.web.bind.annotation.RequestMapping import org.springframework.web.bind.annotation.RestController @RestController class ExampleRestController { @RequestMapping(value = '/get') String get() { /* Lets imagine this exception is thrown somewhere from deepest layers of our service code and we don't have to be immediately aware of this. */ throw new ExampleRestControllerException() } } Controller advice: import org.springframework.web.bind.annotation.ControllerAdvice import org.springframework.web.bind.annotation.ExceptionHandler import org.springframework.web.bind.annotation.ResponseBody @ControllerAdvice class ExampleRestControllerAdvice { @ExceptionHandler(value = ExampleRestControllerException.class) @ResponseBody String onExampleRestControllerException() { return 'ExampleRestControllerException handled in ControllerAdvice' } @ExceptionHandler(value = Exception.class) @ResponseBody String onException() { return 'Exception handled in ControllerAdvice' } } Simple checked exception: class ExampleRestControllerException extends Exception { } When ExampleRestControllerException was thrown, it was handled by onExampleRestControllerException() method in ExampleRestControllerAdvice class. And this worked perfectly fine. But I had to add a simple aspect after the returning of get() method in ExampleRestController to do some additional stuff. @Aspect @Component class RestControllerAspect { @AfterReturning('execution(* org.yu55.ued.controller.ExampleRestController.get())') public void logServiceAccess(JoinPoint joinPoint) { // empty implementation for clarity reasons } With this simple aspect introduced, the microservice began to behave strangely. ExampleRestControllerAdvice started calling the onException() method instead of onExampleRestControllerException() when ExampleRestControllerException was thrown. I didn't expect that. What happened? When the aspect for ExampleRestController.get() method is defined, the Spring generates a proxy for ExampleRestController. Since ExampleRestController doesn't implement any interface, Spring uses CGLIB library instead of java.lang.reflect.Proxy for a dynamic proxy generation [1]. Generated proxy class name is similar to ExampleRestController$$EnhancerBySpringCGLIB$$8d751c8@4481 and it's an ExampleRestController subclass which intercepts all methods calls. There is also another dynamically generated class created: ExampleRestController$$FastClassBySpringCGLIB$$b01891ea which is a ExampleRestController class wrapper. This wrapper class promises faster methods invocations than the Java reflection API [2]. Spring is invoking get() method (via sun.reflect reflection classes) on enhancer class which then invokes get() method (via CGLIB MethodProxy) on fast class instance. When controllers get() method throws ExampleRestControllerException it's rethrown by fast class to an enhancer class and then the enhancer class get() method throwsjava.lang.reflect.UndeclaredThrowableException (which contains ExampleRestControllerException inside). This results in ExampleRestControllerAdvice matchingUndeclaredThrowableException with Exception class and firing handler method different than expected. But why UndeclaredThrowableException is thrown? Because the get() method written in Groovy in fact didn't declare any checked exceptions that it could potentially throw. The proxy doesn't know anything about that controller is written in Groovy and no throws declared means that checked exception may still occur. This behaviour also corresponds to Proxy documentation [3]. The issue can be fixed easily by adding checked exceptions to get() method definition or defining ExampleRestControllerException as runtime exception. Former solution technically works but isn't 'groovy' though and the latter is an approach that Spring prefers and is currently considered to be best practice for exception handling [4]. At the end, I would not blame Groovy for this situation. Instead, I would rather point that despite the fact that Groovy simply don't care about checked exceptions, it doesn't mean that other libraries also don't care. This is not what most programmers think of first when using Groovy. A similar situation may happen with any other JVM language that 'ignores' checked exceptions. The best thing we can do to protect ourselves from situations like this is to prepare tests carefully. Imagine no controller tests for ExampleRestControllerException case - whole application builds and runs perfectly on production until this special case occurs and controller simply returns a wrong answer to the client. A bug like this may not be so obvious and fast to track or fix.
February 19, 2016
by Marcin Pilaczynski
· 19,765 Views · 10 Likes
article thumbnail
Fully Dynamic Classes With ASM
ASM is a Java bytecode manipulation library. Mocking frameworks and runtime code generators use it to dynamically generate Java classes. Here is an introduction to how it works.
February 19, 2016
by Alan Hohn
· 40,005 Views · 16 Likes
article thumbnail
Loading Data Into Azure SQL Data Warehouse
I’m not an ETL expert. In fact, I haven’t done any professional ETL work for several years. My skills are, at best, rusty. With this in mind, I knew I’d have a hard time extracting data from a local database in order to move it up to Azure SQL Data Warehouse. Read on to hear about my journey.
February 18, 2016
by Grant Fritchey
· 14,079 Views · 6 Likes
article thumbnail
Gradle Goodness: Running Groovy Scripts Using Groovy Command Line
In a previous post, we showed how to execute a Groovy script in our source directories. But, what if we want to use the Groovy command line to execute a Groovy script? Read on and see how it's done.
February 18, 2016
by Hubert Klein Ikkink
· 16,175 Views · 1 Like
article thumbnail
How to Build Angular 2 Apps Using Observable Data Services — Pitfalls to Avoid
In this post, we are going to see how an Angular 2 application can be built around the concept of observable data services. Read on to learn more.
February 18, 2016
by Vasco Cavalheiro
· 81,315 Views · 5 Likes
article thumbnail
Docker Daemon for 32-bit Architecture
This post provides the steps required to build a Docker daemon for 32-bit Linux platforms. Read on to see how it's done.
February 17, 2016
by Jim Bugwadia DZone Core CORE
· 17,583 Views · 5 Likes
  • Previous
  • ...
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • ...
  • Next

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

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 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: