Back
  • Admin wrote a new post 8 years, 11 months ago

    The following is the summary of compiler storage allocation.
    1. Static vs Dynamic
    Static: Storage can be made by compiler looking only at the text of the program. One reason for statically allocating as many […]

  • Admin wrote a new post 9 years, 3 months ago

    Template Method is a behavioral design pattern and it’s used to create a method stub and deferring some of the steps of implementation to the subclasses. Template method defines the steps to execute an algori […]

  • Admin wrote a new post 9 years, 3 months ago

    Struts2 Spring 3 Integration Example
    Now the first question comes here, why you want to integrate spring with struts 2? Spring provides some features which are not available in struts 2. Most powerful among them […]

  • Admin wrote a new post 9 years, 3 months ago

    What Sort of Listener Are You?

    If we tried to implement a full graphical interface in a program by using MouseListener, we’d have a lot of work to do. We’d have to draw all the buttons using drawing […]

  • Admin wrote a new post 9 years, 3 months ago

    An inner class is a Java class that’s defined inside another class. In both the examples above, I have a class called VGKernel, which is the class that implements the video game kernel. Inside that class, I define […]

  • Admin wrote a new post 9 years, 3 months ago

    CodeSpells, an immersive, first-person player video game designed to teach students in elementary to high school how to program in the popular Java language, has been developed by University of California, San Di […]

  • Admin wrote a new post 9 years, 3 months ago

    Java JSON Processing API is not very user-friendly and doesn’t provide features for automatic transformation from JSON to Java object and vice versa. Luckily we have some alternative APIs that we can use for JS […]

  • Admin wrote a new post 9 years, 3 months ago

    Hibernate is an open source object/relational mapping tool for Java. Hibernate lets you develop persistent classes following common Java idiom – including association, inheritance, polymorphism, composition and […]

  • Admin wrote a new post 9 years, 3 months ago

    You can remove duplicates or repeated elements from ArrayList in Java by converting ArrayList into HashSet in Java. but before doing that just keep in mind that Set doesn’t preserver insertion order which is gu […]

  • Admin wrote a new post 9 years, 3 months ago

    Building Apache Tomcat from source is very easy, and is the first step to contributing to Tomcat. The complete and comprehensive instructions are provided in the file BUILDING.txt. The following is a quick step […]

  • Admin wrote a new post 9 years, 3 months ago

    Hibernate is an object/relational mapping tool for Java environments. What does it mean the term object/relational mapping? simply a technique of mapping a data representation from an object model to a relational […]

  • Admin wrote a new post 9 years, 4 months ago

    Top 10 Mistakes Java Developers Make
    1. Convert Array to ArrayList

    To convert an array to an ArrayList, developers often do this:

    List list = Arrays.asList(arr);
    Arrays.asList() will return an ArrayList […]

  • Admin wrote a new post 9 years, 4 months ago

    You can program in Java. That’s great! But what else can you do with those skills? Are you trapped with Java?

    Not at all. Here are some other languages, and a brief look at what your Java programming skills […]

  • Admin wrote a new post 9 years, 8 months ago

    Top 10 Most Common Java Mistakes:
    1. Neglecting Existing Libraries
    It’s definitely a mistake for Java Developers to ignore the innumerable amount of libraries written in Java. Many of them have been polished ove […]

  • Admin wrote a new post 9 years, 8 months ago

    J2EE Standard Tools
    J2EE Standard Tools will provide plug-ins for the development of J2EE Applications and support development, testing and debugging with a wide range of J2EE servers.
    The tools for J2EE will […]

  • Admin wrote a new post 9 years, 8 months ago

    The J2EE Specification describes four types of components that can be created by a developer. It interacts with its host environment and other components through the J2EE APIs that are available to it.
    The […]

  • Admin wrote a new post 9 years, 8 months ago

    Who can benefit from learning java?
    Java programmers develop business and Web applications for a variety of platforms using the Java Language.  Java programmers may collaborate with software developers and […]

  • Admin wrote a new post 9 years, 8 months ago

    Advantages of learning Java
    If you want to learn Java language you should know that it offers many advantages than other languages don’t have. 

    Easy to learn:  Java is an object-oriented, it’s quite easy to l […]

  • Admin wrote a new post 9 years, 8 months ago

    1) Head First Java – Best book to Learn Java for Beginners
    Head First Java is the best Java book for any programmer who are new in both programming and Java. Head first Java covers essential Java programming […]

  • Admin wrote a new post 9 years, 8 months ago

    J2EE Introduction:
    Standard Edition (J2SE) as a basis, Java 2 Platform, Enterprise Edition (J2EE) builds on top of this to provide the types of services that are necessary to build distributed, large scale, […]

  • Load More