Java tutorial
/* * The MIT License * * Copyright (c) 2015, Mahmoud Ben Hassine (mahmoud@benhassine.fr) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.easybatch.integration.hibernate; import org.hibernate.SessionFactory; import org.hibernate.boot.registry.StandardServiceRegistryBuilder; import org.hibernate.cfg.Configuration; import org.hibernate.service.ServiceRegistry; import java.io.File; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; /** * Utility class for embedded database and hibernate services. */ public class DatabaseUtil { private static final String DATABASE_URL = "jdbc:hsqldb:mem"; public static final String USER = "sa"; public static final String PASSWORD = "pwd"; /* * Hibernate related utilities */ private static SessionFactory sessionFactory; public static SessionFactory getSessionFactory() { return sessionFactory; } public static void initializeSessionFactory() { Configuration configuration = new Configuration(); configuration.configure("/org/easybatch/integration/hibernate/hibernate.cfg.xml"); ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder() .applySettings(configuration.getProperties()).build(); sessionFactory = configuration.buildSessionFactory(serviceRegistry); } public static void closeSessionFactory() { sessionFactory.close(); } /* * HSQL utility methods */ public static Connection getConnection() throws SQLException { return DriverManager.getConnection(DATABASE_URL, USER, PASSWORD); } public static void startEmbeddedDatabase() throws Exception { //do not let hsqldb reconfigure java.util.logging used by easy batch System.setProperty("hsqldb.reconfig_logging", "false"); createTweetTable(); } public static void createTweetTable() throws Exception { Connection connection = getConnection(); Statement statement = connection.createStatement(); String query = "DROP TABLE IF EXISTS tweet"; statement.executeUpdate(query); query = "CREATE TABLE if not exists tweet (\n" + " id integer NOT NULL PRIMARY KEY,\n" + " user varchar(32) NOT NULL,\n" + " message varchar(140) NOT NULL,\n" + ");"; statement.executeUpdate(query); statement.close(); connection.close(); } public static void populateTweetTable() throws Exception { Connection connection = getConnection(); executeQuery(connection, "INSERT INTO tweet VALUES (1,'foo','easy batch rocks! #EasyBatch');"); executeQuery(connection, "INSERT INTO tweet VALUES (2,'bar','@foo I do confirm :-)');"); executeQuery(connection, "INSERT INTO tweet VALUES (3,'baz','yep');"); connection.close(); } public static void executeQuery(Connection connection, String query) throws SQLException { Statement statement = connection.createStatement(); int i = statement.executeUpdate(query); if (i == -1) { System.err.println("database error : " + query); } statement.close(); } public static void cleanUpWorkingDirectory() { //delete hsqldb tmp files new File("mem.tmp").delete(); new File("mem.log").delete(); new File("mem.properties").delete(); new File("mem.script").delete(); new File("mem.lck").delete(); } }