Java Split String Example showing special characters or regular expressions (regex):
Sometimes we need to split String in java, which contains the special characters such as '(', '*' , '&', '<' , '^' etc., .
Now we will see how to split them in java.
The following example shows how to split a special characters '(', '*'.
Example: Splitspecialcharacter.java
package
com.practice.corejava;
public class Splitspecialcharacter {
public static
void main(String[] args) {
String
str...
Blog about basic concepts of Core Java, J2EE, Hibernate, Spring Framework and Web services.
Thursday, 11 May 2017
Saturday, 6 May 2017
Javax.xml.bind.JAXBElement Class

Javax.xml.bind.JAXBElement Class
The javax.xml.bind.JAXBElement class is the JAXB representation of an Xml Element.This class represents information about an Xml Element from both the element declaration within a schema and the element instance value within an xml document with the following properties:
1. element's xml tag name2. value represents the element instance's atttribute(s) and content model3. element declaration's declaredType (xs:element @type attribute)4. scope of element declaration5. boolean nil property. (element instance's xsi:nil attribute) Class declaration:
Following is the declaration for javax.xml.bind.JAXBElement class:
public...
Thursday, 4 May 2017
org/jboss/logging/BasicLogger: Hibernate Error Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/logging/BasicLogger
Hibernate Error Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/logging/BasicLogger
The following exception is being thrown due to missing of the library jboss-logging-3.1.0.GA.jar.
Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/logging/BasicLogger
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at org.hibernate.cfg.Configuration.<clinit>(Configuration.java:176)
at com.hibernate.utils.HibernateUtil.getSessionFactory(HibernateUtil.java:15)
at com.hibernate.application.RunApplication.main(RunApplication.java:16)
Caused by: java.lang.ClassNotFoundException: org.jboss.logging.BasicLogger
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
... 15 more
Solution:
Or
Add the dependency in Maven’s pom.xml
<dependency>
<groupId>jboss-logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>3.1.0</version>
</dependency>
You may also like to read the below posts:
Monday, 1 May 2017
org/dom4j/DocumentException: Hibernate Error: Initial SessionFactory creation failed java.lang.NoClassDefFoundError:org/dom4j/DocumentException

Hibernate Error: Initial SessionFactory creation failed
java.lang.NoClassDefFoundError:org/dom4j/DocumentException
The below exception is very common and caused by missing the dependency library – dom4j.
Exception in thread "main" java.lang.NoClassDefFoundError: org/dom4j/DocumentException
at com.hibernate.utils.HibernateUtil.getSessionFactory(HibernateUtil.java:15)
at com.hibernate.application.RunApplication.main(RunApplication.java:16)
Caused by: java.lang.ClassNotFoundException: org.dom4j.DocumentException
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
...
Subscribe to:
Posts (Atom)