]> git.mxchange.org Git - jcore-utils.git/commitdiff
This was stupid anyway, there is a better approach, sadly this makes my Table Data...
authorRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 12:52:44 +0000 (14:52 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 12:52:44 +0000 (14:52 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
src/org/mxchange/jsfcore/BaseServletSystem.java

index 01a404f97a84fd8344e0f5c4435b19dea669b71c..a12ac5b19d5bcc7db279d9eb1a63371754fe22ac 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index b9c52956dd18daf2f85ce383b543a4bb6f18fa38..6e1a2c82b259bb82c6d5de9ae36c8122b282307e 100644 (file)
@@ -16,8 +16,6 @@
  */
 package org.mxchange.jsfcore;
 
-import java.text.MessageFormat;
-import javax.servlet.ServletContext;
 import org.mxchange.jcore.BaseFrameworkSystem;
 
 /**
@@ -25,48 +23,4 @@ import org.mxchange.jcore.BaseFrameworkSystem;
  * @author Roland Haeder
  */
 public class BaseServletSystem extends BaseFrameworkSystem {
-       /**
-        * Initializes properties from given servlet configuration
-        * @param context Servlet context instance
-        */
-       protected void initProperties (final ServletContext context) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("context={0} - CALLED!", context)); //NOI18N
-
-               // context shall not be null
-               if (null == context) {
-                       // Abort here
-                       throw new NullPointerException("context is null"); //NOI18N
-               }
-
-               // We need some properties that needs to be set
-               for (final String name : this.getPropertyNames()) {
-                       // Debug log
-                       this.getLogger().debug(MessageFormat.format("name={0}", name)); //NOI18N
-
-                       // Get value
-                       String value = context.getInitParameter(name);
-
-                       // Debug message
-                       this.getLogger().debug(MessageFormat.format("value={0}", value)); //NOI18N
-
-                       // Is it null?
-                       if (null == value) {
-                               // Value is null
-                               throw new NullPointerException(MessageFormat.format("value for {0} is null, maybe invalid context parameter?", name)); //NOI18N
-                       } else if (name.equals("database.backend.storagepath")) { //NOI18N
-                               // Need to expand this path
-                               value = context.getRealPath(String.format("../../%s", value.trim())); //NOI18N
-                       }
-
-                       // Debug log
-                       this.getLogger().debug(MessageFormat.format("{0}={1}", name, value)); //NOI18N
-
-                       // Set property
-                       this.setProperty(name, value);
-               }
-
-               // Trace message
-               this.getLogger().trace("EXIT!"); //NOI18N
-       }
 }