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 Coding Topics

article thumbnail
Skaffold: K8s Development Made Easy
In this post, look at Skaffold for automatic building and deploying our application to a Kubernetes cluster during development.
March 10, 2020
by Gunter Rotsaert DZone Core CORE
· 14,406 Views · 8 Likes
article thumbnail
Loading Files From Web Browser With Mule
This tutorial explains how to load files from your web browser using Mule 4.
Updated March 10, 2020
by Kasim Bekur
· 18,070 Views · 4 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,405 Views · 1 Like
article thumbnail
How to Enable HTTPS on a Spring Boot Application
In this article, see a tutorial on how to enable HTTPS on a Spring Boot application.
March 9, 2020
by EBINEZAR GNANASEKARAN
· 82,712 Views · 22 Likes
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,470 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,435 Views · 4 Likes
article thumbnail
Unbounded Stream Processing Using Apache Beam
Today, we are going to build a simple WordCount data pipeline using Apache Kafka for unbounded sources.
March 9, 2020
by Sunil pandith
· 16,225 Views · 3 Likes
article thumbnail
Compile Protocol Buffers Using Maven
This tutorial explains how to compile protocol buffers using Maven.
March 6, 2020
by Munander Singh
· 65,989 Views · 5 Likes
article thumbnail
Integration Dotenv With NestJS and Type ORM
In this article, we discuss how to integrate dotenv with NestJs and TypeORM to get you up and going with your Node application configuration.
March 5, 2020
by Jason Rees
· 24,750 Views · 5 Likes
article thumbnail
Taming AWS Costs With Cost and Usage Reports + AWS Athena
If your cloud costs are wearing you down, take a look at how you can integrate AWS Athena with you database for better cost usage insight.
Updated March 5, 2020
by Ayush Sharma
· 6,842 Views · 2 Likes
article thumbnail
Spring Security — Chapter 1
In this article, see how to get started using Spring Security to manage authentication and authorization in a Java application.
March 5, 2020
by Vinu Sagar
· 17,555 Views · 20 Likes
article thumbnail
10 Famous Apps Using React.js
See ten famous applications that are using React.js nowadays, including Facebook, WhatsApp, and more.
March 4, 2020
by Manish Patel
· 22,341 Views · 4 Likes
article thumbnail
Java Records: A Closer Look
Check out this deep look into Java Records for declaring classes and see how it compares to Kotlin's Data Class and Scala's Case Class features.
March 4, 2020
by Ali Dehghani
· 15,470 Views · 10 Likes
article thumbnail
Remove a BOM Character From an Apache Camel Exchange Message (DSL Java)
In this article, we provide a brief tutorial on how to remove a BOM character from an Apache Camel exchange message with DSL Java.
Updated March 4, 2020
by Anna Star
· 16,485 Views · 5 Likes
article thumbnail
4 Techniques for Writing Better Java
Touching on topics from inheritance and overriding to final classes and methods, here is some advice on how to be a better Java coder.
Updated March 3, 2020
by Justin Albano DZone Core CORE
· 94,892 Views · 129 Likes
article thumbnail
Observability on Heroku: How to Monitor Apps on Managed Infrastructure
Although the services Heroku offers are fully managed services, there are a number of ways to monitor your infrastructure natively or with add-ons.
March 3, 2020
by Michael Bogan DZone Core CORE
· 8,351 Views · 3 Likes
article thumbnail
Rails 6: Multiple DB Support
Learn about Rails 6 and it's multiple databases support and see why you want this support.
March 3, 2020
by Ajay Babar
· 9,242 Views · 4 Likes
article thumbnail
At a Glance - Reviewing the GUIs of MongoDB, RavenDB, and CouchDB
In this article, we walk through the GUIs of three major document databases, including MongoDB, RavenDB, and CouchDB.
Updated March 3, 2020
by Mor Hilai
· 30,377 Views · 8 Likes
article thumbnail
For Loops in JavaScript: Native, forEach, and For-of
In this article, we cover how to loop over array in JavaScript with a traditional, native loop, ES6's forEach method, and a for-of loop.
March 2, 2020
by Peter Connelly
· 12,180 Views · 5 Likes
article thumbnail
Geospatial Data Analysis in Angular
This article will explain the method to create an interactive geospatial data visualization with Angular 8, MapboxGL and DeckGL.
March 2, 2020
by Imaginea Technologies
· 8,507 Views · 3 Likes
  • Previous
  • ...
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • ...
  • 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
×