*/
package org.mxchange.pizzaapplication.application;
+import java.io.IOException;
import java.lang.reflect.Field;
+import java.sql.SQLException;
import java.text.MessageFormat;
import java.util.Iterator;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException;
import org.mxchange.pizzaapplication.BasePizzaServiceSystem;
import org.mxchange.pizzaapplication.customer.Customer;
import org.mxchange.pizzaapplication.customer.PizzaServiceCustomer;
// Not correct instance
throw new ServletException("app is not set correctly"); //NOI18N
} else {
- // "service" is null, so initialize it
- instance = new PizzaServiceApplication(context);
+ try {
+ // "service" is null, so initialize it
+ instance = new PizzaServiceApplication(context);
+ } catch (final UnsupportedDatabaseBackendException | SQLException ex) {
+ throw new ServletException(ex);
+ }
// And set it here
context.setAttribute("app", instance); //NOI18N
* Constructor with servet configuration
* @param context Servlet context
*/
- private PizzaServiceApplication (final ServletContext context) {
+ private PizzaServiceApplication (final ServletContext context) throws UnsupportedDatabaseBackendException, SQLException {
// Call other constructor first
this();
* Fills products list
* @todo Very hard-coded stuff ...
*/
- private void fillProductsList () {
+ private void fillProductsList () throws UnsupportedDatabaseBackendException, SQLException {
// Trace message
this.getLogger().trace("CALLED!"); //NOI18N
// Init bundle
this.initBundle();
- // Init properties
- this.initProperties();
+ try {
+ // Init properties
+ this.initProperties();
- // Fill products list
- this.fillProductsList();
+ // Fill products list
+ this.fillProductsList();
+ } catch (final IOException | UnsupportedDatabaseBackendException | SQLException ex) {
+ // Abort here
+ this.abortProgramWithException(ex);
+ }
// "Walk" over all products
for (final Product product : this.getProducts()) {
// Gender is MALE now
customer.setGender(Gender.MALE);
- // Get iterator on all its fields
- Iterator<Map.Entry<Field, Object>> it = customer.iterator();
+ // Init iterator
+ Iterator<Map.Entry<Field, Object>> it = null;
+
+ try {
+ // Get iterator on all its fields
+ it = customer.iterator();
+ } catch (final NoSuchMethodException ex) {
+ this.abortProgramWithException(ex);
+ }
// Output it
- while (it.hasNext()) {
+ while ((it instanceof Iterator) && (it.hasNext())) {
Map.Entry<Field, Object> entry = it.next();
this.getLogger().debug(MessageFormat.format("entry {0}={1}", entry.getKey(), entry.getValue())); //NOI18N
}
*/
package org.mxchange.pizzaapplication.database.frontend.product;
+import java.io.IOException;
import java.sql.SQLException;
import java.text.MessageFormat;
import java.util.Iterator;
/**
* Default constrcutor
+ * @throws org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException If the configured backend is not supported
+ * @throws java.sql.SQLException If any SQL error occurs
*/
- public PizzaProductDatabaseFrontend () {
+ public PizzaProductDatabaseFrontend () throws UnsupportedDatabaseBackendException, SQLException {
// Trace message
this.getLogger().trace("CALLED!"); //NOI18N
// Set "table" name
this.setTableName("products"); //NOI18N
- try {
- // Initalize backend
- this.initBackend();
- } catch (final UnsupportedDatabaseBackendException | SQLException ex) {
- // Abort program
- this.abortProgramWithException(ex);
- }
+ // Initalize backend
+ this.initBackend();
}
/**
* Shuts down the database layer
*/
@Override
- public void doShutdown () {
+ public void doShutdown () throws SQLException, IOException {
// Trace message
this.getLogger().trace("CALLED!"); //NOI18N