VOOZH about

URL: https://www.javacodegeeks.com/author/eidher-julian

⇱ Eidher Julian, Author at Java Code Geeks


  • Core Java👁 Image
    Eidher JulianMarch 19th, 2021
    1 479

    Handling Injection Attacks in Java

    An injection attack is the insertion of malicious data from the client to the application using SQL or XXE (XML…

    Read More »
  • Core Java👁 Image
    Eidher JulianMarch 3rd, 2021
    0 2,630

    Handling Cross-Site Scripting (XSS) in Java

    Cross-site scripting (XSS) is a type of security vulnerability in web applications where an attacker injects malicious scripts through some…

    Read More »
  • Enterprise Java👁 Image
    Eidher JulianJanuary 21st, 2021
    2 460

    Testing with Mockito

    1) Register MockitoExtension @ExtendWith(MockitoExtension.class) class ObjectTest { static final Long ID = 1L; 2) Create the mock @Mock private ObjectRepo…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Eidher JulianJanuary 21st, 2021
    0 327

    Spring Injection Types

    Spring supports three types of dependency injections: Constructor injection @Component public class SecondBeanImpl implements SecondBean { private FirstBean firstBean; @Autowired…

    Read More »
  • Enterprise Java👁 Image
    Eidher JulianJanuary 9th, 2021
    0 282

    Jenkins: Automating your delivery pipeline

    In this post, we are going to create a Jenkins pipeline for a Java Spring project using Maven and Git:…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Eidher JulianDecember 29th, 2020
    0 129

    Spring Security

    There are many authentication mechanisms (basic, digest, form, X.509, etc), and there are many storage options for credentials and authority…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Eidher JulianDecember 14th, 2020
    0 192

    Spring MVC REST

    Representational state transfer (REST) is an architectural style that describes best practices to expose web services over HTTP, emphasizing performance,…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Eidher JulianDecember 13th, 2020
    0 87

    Spring Boot for war

    Spring Boot supports the following embedded servlet containers: Tomcat Jetty Undertow You can use Maven, Gradle, or Ant/Ivy as build…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Eidher JulianDecember 1st, 2020
    0 208

    Spring Web MVC

    Spring MVC is a web framework based on the model–view–controller pattern. It is based on the Spring principles and supports…

    Read More »
  • 1
  • 2
  • »
Back to top button
Close