]> git.mxchange.org Git - jjobs-ejb.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Wed, 18 May 2016 15:53:05 +0000 (17:53 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 26 May 2016 13:16:48 +0000 (15:16 +0200)
- load properties in init() method (post-construction)
- added config.properties

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jmailee/model/delivery/JobsEmailDeliveryMessageBean.java
src/java/org/mxchange/jmailer/config.properties [new file with mode: 0644]

index a6313c0714ff2a121e2b54c73af7c3bc6826e55c..1f32581d64fee28c3b0fd69a4aa8133199d2fce4 100644 (file)
@@ -18,6 +18,9 @@ package org.mxchange.jmailee.model.delivery;
 
 import java.io.Serializable;
 import java.text.MessageFormat;
+import java.util.Properties;
+import java.util.ResourceBundle;
+import javax.annotation.PostConstruct;
 import javax.ejb.ActivationConfigProperty;
 import javax.ejb.MessageDriven;
 import javax.jms.JMSException;
@@ -52,6 +55,11 @@ public class JobsEmailDeliveryMessageBean extends BaseJobsDatabaseBean implement
         */
        private final DeliverableJobsEmail mailer;
 
+       /**
+        * Configuration file
+        */
+       private final String configFile = "org.mxchange.jmailer.config"; //NOI18N
+
        /**
         * Default constructor
         */
@@ -95,4 +103,45 @@ public class JobsEmailDeliveryMessageBean extends BaseJobsDatabaseBean implement
                this.getLoggerBeanLocal().logTrace("onMessage - EXIT!"); //NOI18N
        }
 
+       /**
+        * Post-construction
+        */
+       @PostConstruct
+       public void init () {
+               // Trace message
+               this.getLoggerBeanLocal().logTrace("init: CALLED!"); //NOI18N
+
+               // Try to load bundle
+               ResourceBundle bundle = ResourceBundle.getBundle(this.configFile);
+
+               // Debug message
+               this.getLoggerBeanLocal().logDebug(MessageFormat.format("init: bundle={0}", bundle)); //NOI18N
+
+               // The bunble should be valid
+               if (null == bundle) {
+                       // Throw NPE
+                       throw new NullPointerException(MessageFormat.format("bundle is null, maybe file {0} does not exist?", this.configFile)); //NOI18N
+               }
+
+               // Init Properties
+               Properties properties = new Properties();
+
+               // Is the bundle not empty?
+               if (!bundle.keySet().isEmpty()) {
+                       // Loop through all
+                       for (final String key : bundle.keySet()) {
+                               // Log debug message
+                               this.getLoggerBeanLocal().logDebug(MessageFormat.format("init: key={0}", key)); //NOI18N
+
+                               // Get string from bundle and set it in properties
+                               properties.put(key, bundle.getString(key));
+                       }
+               }
+
+               // Handle it over to the mailer
+               this.mailer.init(properties);
+
+               // Trace message
+               this.getLoggerBeanLocal().logTrace("init: EXIT!"); //NOI18N
+       }
 }
diff --git a/src/java/org/mxchange/jmailer/config.properties b/src/java/org/mxchange/jmailer/config.properties
new file mode 100644 (file)
index 0000000..4d2c1cf
--- /dev/null
@@ -0,0 +1,21 @@
+# Copyright (C) 2016 Roland Haeder
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero 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 Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# Email address for "Errors-To" header
+mailer.errorsto=you@foo.example
+# Email address for "Bounces-To" header
+mailer.bouncesto=you@foo.example
+# Email address for "X-Loop" header
+mailer.xloop=you@foo.example