]> git.mxchange.org Git - jcore-utils.git/commitdiff
Well, if that is EJB, it sucks somehow: Logging not allowed and a complexer class...
authorRoland Haeder <roland@mxchange.org>
Mon, 7 Sep 2015 13:30:38 +0000 (15:30 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 7 Sep 2015 13:30:38 +0000 (15:30 +0200)
----------------------------------------
Caused by: java.lang.NoClassDefFoundError: [Lorg/mxchange/jcore/model/contact/gender/Gender;
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2570)
at java.lang.Class.privateGetPublicMethods(Class.java:2690)
at java.lang.Class.getMethods(Class.java:1467)
at org.glassfish.ejb.deployment.descriptor.EjbDescriptor.addAllInterfaceMethodsIn(EjbDescriptor.java:2577)
at org.glassfish.ejb.deployment.descriptor.EjbDescriptor.getLocalRemoteBusinessMethodDescriptors(EjbDescriptor.java:2530)
... 53 more
Caused by: java.lang.ClassNotFoundException: org.mxchange.jcore.model.contact.gender.Gender
----------------------------------------
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
nbproject/project.properties
src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java
src/org/mxchange/jcoreee/beans/FrameworkBean.java [deleted file]

index e5e79d680b3b7d3ac93636320b4098e7f4ee8fd7..c7c6f6cf569623195a065aefc56bf4572cea8b01 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index ea7b27475efc1ec2e0dd4a26821039925c0e6f15..8f29e6fe65241547eba6674471cfa527f707602a 100644 (file)
@@ -30,7 +30,6 @@ dist.jar=${dist.dir}/jcoreee.jar
 dist.javadoc.dir=${dist.dir}/javadoc
 endorsed.classpath=
 excludes=
-file.reference.commons-lang3-3.4.jar=lib/commons-lang3-3.4.jar
 file.reference.jcore.jar=lib/jcore.jar
 file.reference.log4j-api-2.3.jar=lib/log4j-api-2.3.jar
 file.reference.log4j-core-2.3.jar=lib/log4j-core-2.3.jar
@@ -42,7 +41,6 @@ javac.classpath=\
     ${file.reference.jcore.jar}:\
     ${file.reference.log4j-api-2.3.jar}:\
     ${file.reference.log4j-core-2.3.jar}:\
-    ${file.reference.commons-lang3-3.4.jar}:\
     ${libs.javaee-api-7.0.classpath}
 # Space-separated list of extra javac options
 javac.compilerargs=-Xlint:unchecked -Xlint:deprecation
index 027727143a16170e12cce2054d43a9c08b1402a4..031a8e05245f3a85821332dbd0649fc991ff255a 100644 (file)
@@ -16,9 +16,7 @@
  */
 package org.mxchange.jcoreee.beans;
 
-import javax.enterprise.context.Dependent;
-import org.apache.logging.log4j.LogManager;
-import org.apache.logging.log4j.Logger;
+import java.io.Serializable;
 
 /**
  * A general bean class. Do not put things in here that are not serializable.
@@ -26,42 +24,19 @@ import org.apache.logging.log4j.Logger;
  *
  * @author Roland Haeder
  */
-@Dependent
-public abstract class BaseFrameworkBean implements FrameworkBean {
+public abstract class BaseFrameworkBean implements Serializable {
 
        /**
         * Serial number
         */
        private static final long serialVersionUID = 83258139481372814L;
 
-       /**
-        * Class' logger
-        */
-       private final Logger LOG;
-
-       /**
-        * Initializer
-        */
-       {
-               // Get logger
-               this.LOG = LogManager.getLogger(this);
-       }
-
        /**
         * Protected constructor, please don't add init() call here.
         */
        protected BaseFrameworkBean () {
        }
 
-       /**
-        * Getter for logger
-        *
-        * @return Logger
-        */
-       protected Logger getLogger () {
-               return this.LOG;
-       }
-
        /**
         * Super initialization method. If you overwrite this method, please call it before (!) your own initialization.
         *
diff --git a/src/org/mxchange/jcoreee/beans/FrameworkBean.java b/src/org/mxchange/jcoreee/beans/FrameworkBean.java
deleted file mode 100644 (file)
index 744317e..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcoreee.beans;
-
-import java.io.Serializable;
-
-/**
- * A general bean interface
- *
- * @author Roland Haeder
- */
-public interface FrameworkBean extends Serializable {
-
-       /**
-        * Initializes this bean, mostly done with @PostConstruct
-        *
-        * @throws RuntimeException If something happens, no checked exceptions are allowed
-        */
-       public void init () throws RuntimeException;
-}