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
Monitoring Apache Ignite Cluster With Grafana (Part 1)
In this article, we cover the Grafana for monitoring Ignite clusters and provide step-by-step instructions to install and configure the entire stack technology.
Updated March 16, 2020
by Shamim Bhuiyan
· 20,060 Views · 7 Likes
article thumbnail
Make Slack Bots in Java in Minutes
Read up on BotKit — a framework on GitHub that lets you make your own cloud-ready Slack bot in mere moments.
Updated March 16, 2020
by Ram Patra
· 78,454 Views · 27 Likes
article thumbnail
ConcurrentHashMap: Call Only One Method Per Key
Using the ConcurrentHashMap in a thread-safe way is easy.
Updated March 16, 2020
by Thomas Krieger
· 25,510 Views · 17 Likes
article thumbnail
Understanding Architecture Models of Chatbot and Response Generation Mechanisms
Analyze chatbots, one of the most popular, widely adopted, and accessible ways to utilize artificial intelligence in real life.
Updated March 16, 2020
by Albert Smith
· 45,252 Views · 11 Likes
article thumbnail
Comparing Apache Ignite In-Memory Cache Performance With Hazelcast In-Memory Cache and Java Native Hashmap
This article compares different options for the in-memory maps and their performances in order for an application to move away from traditional RDBMS.
March 16, 2020
by Krishna Munagala
· 8,731 Views · 4 Likes
article thumbnail
Spring Boot - Microservice- JaxRS Jersey - HATEOAS - JerseyTest - Integration
In this article, we discuss how to write a Spring Boot microservice based on Spring Jax-Rs Jersey, HATEOAS API, and JerseyTest framework integration.
March 13, 2020
by Bogdan Oleinikov
· 13,022 Views · 4 Likes
article thumbnail
Java vs. Go Microservices - Load Testing (Rematch)
In this article, we look at benchmarks for two versions of a basic application with Go and Java to see which has the smaller CPU/memory footprint.
March 12, 2020
by Sergey Kirichenko
· 27,243 Views · 16 Likes
article thumbnail
Java Enterprise Annotations Part 1
In this article, we discuss popular Java annotations to sure up your understanding of this common pattern within enterprise applications.
March 12, 2020
by Dmitry Egorov DZone Core CORE
· 13,713 Views · 11 Likes
article thumbnail
Testing State Machines — The Model-Driven Approach
Following the model-driven paradigm, state machines are first modeled on an abstract level and in a second step transformed into source code.
Updated March 11, 2020
by Thomas Kutz
· 8,266 Views · 3 Likes
article thumbnail
How Reactive Threads Works (Part 1)
In this article, let's see what reactive programming is and also see how Reactive threads work.
March 11, 2020
by Milind Deobhankar
· 7,943 Views · 4 Likes
article thumbnail
Java Testing Complete Guide
In this article, we discuss nine of the most common types of application testing and review code samples and tools for each in Java.
Updated March 11, 2020
by Dmitry Egorov DZone Core CORE
· 59,106 Views · 38 Likes
article thumbnail
How to Migrate From JUnit 4 to JUnit 5 Step by Step
In this tutorial, we take a look at how you can create and migrate a basic Spring Boot application from JUnit 4 to the refreshed JUnit 5.
March 11, 2020
by Awkash Agrawal
· 49,641 Views · 4 Likes
article thumbnail
Distributed Java Queues on Top of Redis
In this article, we discuss six different types of Redis-based distributed queues using the Redisson Java framework.
Updated March 11, 2020
by Nikita Koksharov
· 34,704 Views · 8 Likes
article thumbnail
Develop a Java Application With Kafka
In this article, we discuss how to develop a secure, scalable, messaging Java application with Kafka
Updated March 11, 2020
by Daniel Pereira
· 59,888 Views · 11 Likes
article thumbnail
Develop a Secure CRUD Application Using Angular and Spring Boot
In this article, we discuss how to implement OpenID Connect with Angular, Kotlin, Spring Boot, and Okta.
Updated March 11, 2020
by Matt Raible
· 20,410 Views · 6 Likes
article thumbnail
Develop a REST API Using Java and Jetty
In this tutorial, you will build a simple web service with Jetty embedded. After that, you will build the same web service in Spring Boot and Jetty.
Updated March 11, 2020
by Andrew Hughes
· 55,556 Views · 9 Likes
article thumbnail
Immutability in JavaScript — When and Why Should You Use It
In this article, take a look at immutability in JavaScript and see when and why you should use it.
March 10, 2020
by Manjunath M
· 39,125 Views · 3 Likes
article thumbnail
Collecting Logs in Azure Databricks
This article demonstrates how you can use Azure Databricks with Spark to create and collect logs and Docker.
March 10, 2020
by Shubham Dangare
· 9,491 Views · 1 Like
article thumbnail
Deploying an Angular App to AWS S3
In this article, you'll create and deploy an Angular app to AWS S3 from scratch in less than five minutes Prerequisites
March 9, 2020
by Marouen Helali
· 31,531 Views · 6 Likes
article thumbnail
Defining Implementations of Services: Dependency Injection in Angular
I was working on a practical project using Angular 8, where I was creating a service and thinking more about how to implement SOLID principles. I decided to have an interface to define my service and a class to implement the logic. Everything was okay with that design, but a question came to my mind, "How can I implement dependency injection with my Angular component?" In this example, I am going to use an abstract class, Let's create an abstract class, named IGreetingsService. This will be used as an Interface with a greeting method. TypeScript x 1 export abstract class IGreetingsService { 2 constructor() { } 3 abstract greeting(): String; 4 } Now, let's create a class, GreetingsServiceImpl. This class implements the IGreetingsService abstract class. TypeScript xxxxxxxxxx 1 1 export class GreetingsServiceImpl implements IGreetingsService { 2 constructor() { } 3 greeting(): String{ 4 return "Pruebaa"; 5 }; 6 } At this point, we have a regular class to use as a service, but we need to add the annotation @Injectable. We have to put it at IGreetingsService. TypeScript x 10 1 @Injectable({ 2 providedIn: 'root', 3 useClass: GreetingsServiceImpl, 4 }) 5 export abstract class IGreetingsService { 6 7 constructor() { } 8 9 abstract greeting(): String; 10 } The magic is at the property useClass. This class is used by the Angular framework to know what concrete class has to use for dependency injection when you are using theIGreetingsService abstract class. So we are ready to use our service into an angular component. TypeScript xxxxxxxxxx 1 12 1 @Component({ 2 selector: 'my-app', 3 templateUrl: './app.component.html', 4 styleUrls: [ './app.component.css' ] 5 }) 6 export class AppComponent { 7 name: String; 8 constructor(private service: IGreetingsService ) { 9 this.name = this.service.greeting(); 10 } 11 12 } At the moment, to create an instance of the AppComponent, Angular automatically creates an instance of GreetingsServiceImpl , instead of IGreetingsService. (Remember IGreetingsService is an abstract class). This approach can help you in several situations; for example, think about a service using REST services to get some data, but now there is a new requirement, and you need to get the same data from session storage or local storage. You can create a new class implementing your abstract class and update the property useClass to refer to your new class. Another situation would be if you needed a different implementation on production environments and testing environments. You can find the complete source code here: https://stackblitz.com/edit/angular8-injectiondependency-interface. A final note, you can define a provider in the component definition annotation to inject a specific implementation of your service. TypeScript x 1 @Component({ 2 selector: 'my-app', 3 templateUrl: './app.component.html', 4 styleUrls: [ './app.component.css' ], 5 providers :[{ provide: IGreetingsService, useClass: GreetingsServiceImpl }] 6 }) Further Reading Angular: Everything You Need to Know [Tutorials]. About Dependency Injection.
March 9, 2020
by Javier Santos
· 9,538 Views · 4 Likes
  • Previous
  • ...
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • ...
  • 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
×