JavaBeat

  • Home
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Privacy

org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating OGNL expression

November 26, 2013 by Krishna Srinivasan Leave a Comment

When you work with Thymeleaf application, you would have encountered the TemplateProcessingException exceptions. The problem is the use of default context variables. It could be because of Wrong use of the context variable name (or) The property name accessed by the context variable object is not correct.

Filed Under: Web Frameworks Tagged With: Exceptions, Thymeleaf

java.lang.ClassNotFoundException: javassist.ClassPath

November 22, 2013 by Krishna Srinivasan Leave a Comment

When you work with Hibernate or Thymeleaf, it is probably that you would get the below exception. It may happen any other projects too if that library has the dependency with javaassist library. I have got this exception when I started developing my first Hello World application using Thymeleaf template framework. The reason for the […]

Filed Under: Java Tagged With: Exceptions

Spring Bean Factory Exception : BeanFactory not initialized or already closed

November 14, 2013 by Krishna Srinivasan Leave a Comment

The given exception is exception is thrown when the spring bean factory is not initialized properly before it is used in your application. It normally occurs when we are not added the bean factory initialization code in our project. One typical example is adding the spring initialization parameter to web.xml deployment descriptor. Exception Trace:

Filed Under: Spring Framework Tagged With: Exceptions, Spring Exceptions

Jersey : The ResourceConfig instance does not contain any root resource classes

November 14, 2013 by Krishna Srinivasan Leave a Comment

When you are working with Jersey REST web services, you would encounter the following exception. This is occurred either of two reasons. com.sun.jersey.config.property.packages doesn’t exist in your web.xml. com.sun.jersey.config.property.packages included a package path, but that is not included any jersey services. If you check the above two reasons and resolve it, the below exception will […]

Filed Under: Java Tagged With: Exceptions, Jersey

java.lang.NoClassDefFoundError: org/objectweb/asm/ClassVisitor

November 14, 2013 by Krishna Srinivasan Leave a Comment

When you work on Hibernate, Jersey or any third party API, most of these APIs have the dependency with the asm.jar file. ASM is an all purpose Java bytecode manipulation and analysis framework. This is a common framework used by many of the thrird part frameworks internally, that is the reason many projects have this […]

Filed Under: Java Tagged With: Exceptions, Jersey

java.lang.OutOfMemoryError: PermGen space

January 31, 2010 by Krishna Srinivasan Leave a Comment

We encountered the dreaded java.lang.OutOfMemoryError: PermGen spaceerror What does it means – Permgen Space is the space where the class files are all loaded for the first time and there after they are loaded or referenced from there. This error means there is a hell lot of duplicate classes being loaded and not all are […]

Filed Under: Java Tagged With: Core Java, Exceptions

java.lang.OutOfMemoryError: Java heap space

January 30, 2010 by Krishna Srinivasan Leave a Comment

We encountered the dreaded java.lang.OutOfMemoryError: Java heap space error. How often do we hit this error and look in bewilderment. What does it means Means there is a hell lot of objects being created and not all are being marked for GC. These stray objects are cluttering the heap space and resulting in this error. […]

Filed Under: Java Tagged With: Core Java, Exceptions

Follow Us

  • Facebook
  • Pinterest
JavaBeat

FEATURED TUTORIALS

Servlet Life Cycle: Explanation

Servlet Life Cycle: Explanation

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

The Java 6.0 Compiler API

Copyright © by JavaBeat · All rights reserved

This website uses cookies to ensure you get the best experience on our website. Learn more.