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

article thumbnail
Securing Web Apps Using PKCE With Spring Boot
Dive into securing your web apps with OAuth 2.0 and OpenID Connect using PKCE, Okta, and Spring Boot.
March 25, 2020
by Micah Silverman
· 19,585 Views · 5 Likes
article thumbnail
Securing Legacy Apps With OAuth 2.0 and Spring Cloud Gateway
Dive into legacy app security. This tutorial will show you how to keep your apps safe with OAuth 2.0 and Spring Cloud Gateway.
March 23, 2020
by Brian Demers
· 12,627 Views · 4 Likes
article thumbnail
Top 10 Jobs With AWS Certification
There has been a hike in hiring professionals with cloud knowledge — find out which jobs you're qualified for!
March 17, 2020
by monica hesham
· 7,316 Views · 4 Likes
article thumbnail
REST API Error Handling With Spring Boot
Want to learn more about room for improvement in error handling? Check out this tutorial on REST API error handling in Spring Boot.
Updated March 16, 2020
by Ali Dehghani
· 86,278 Views · 32 Likes
article thumbnail
Docker Without Root Privileges
in this article, we discuss how to run Docker without root privileges in order to better manage security within your containers.
March 12, 2020
by Vaibhav Raizada
· 66,973 Views · 18 Likes
article thumbnail
Understanding Inversion of Control and Dependency Injection
In this article, learn to understand inversion of control and dependency injection.
March 12, 2020
by Alejandro Duarte DZone Core CORE
· 37,121 Views · 13 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
· 58,990 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,495 Views · 4 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,761 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,317 Views · 6 Likes
article thumbnail
The Anatomy of a Microservice, One Service, Multiple Servers
It’s (finally) time to look at the API Server layer and expose the business service to the outside world.
March 10, 2020
by Ray Elenteny DZone Core CORE
· 17,039 Views · 5 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,429 Views · 4 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,551 Views · 20 Likes
article thumbnail
How to Build a Business on Ethical Hacking
In this article, some basics behind ethical hacking that anyone looking to become a white hat needs to know.
February 29, 2020
by Alex Thornhill
· 33,053 Views · 5 Likes
article thumbnail
What is Database Functional Dependency?
Learn more about database functional dependency based on relational databases and the importance of database management systems.
Updated February 28, 2020
by Stephen Watts
· 5,990 Views · 2 Likes
article thumbnail
Authorizing the MuleSoft API Using AWS Cognito User Pool and Mule JWT Validation Policy
This article describes in-depth the process of using AWS Cognito and a Mule JWS validation policty to authorize the MuleSoft API.
Updated February 25, 2020
by Jitendra Bafna
· 26,428 Views · 5 Likes
article thumbnail
Incorporating Fault-Tolerance Into Your Microservice Architecture
In this article, we discuss the process of incorporating fault-tolerance into a microservice architecture.
February 19, 2020
by Oresztesz Margaritisz DZone Core CORE
· 10,508 Views · 13 Likes
article thumbnail
Securing Spring Boot Microservices with JSON Web Tokens (JWT)
This article demonstrates how JWTs can be used for securing access to Java microservices built with Spring Boot.
Updated February 17, 2020
by Gopinath Parimi
· 49,145 Views · 4 Likes
article thumbnail
BlowFish, the Only Way to Secure Your Passwords
In this article, we discuss fundamentals behind password security (hashing and salting) and provide a library (Bcrypt) to handle hashing for you.
February 11, 2020
by Thomas Hansen DZone Core CORE
· 10,773 Views · 4 Likes
article thumbnail
Achieving SOC 2 Compliance in DevOps
Learn more about the specific guidelines for meeting SOC 2 security requirements in a DevOps pipeline and how AWS can help meet them.
February 10, 2020
by Mauricio Ashimine
· 27,548 Views · 3 Likes
  • Previous
  • ...
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • ...
  • 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
×