com.darwinsys.database.JPAQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.database;
import java.io.Console;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import javax.persistence.Query;
import javax.swing.JOptionPane;
/*
* Interactive query runner; ideal for testing query syntax once
* you've dealt with setting JPA up for your project.
*/
public class JPAQuery {
static EntityManagerFactory entityMgrFactory = null;
public enum Mode {
CONSOLE,
SWING
}
public static void main(String[] args) {
String unitName = args.length == 0 ? "jpademo" : args[0];
JPAQuery program = new JPAQuery();
// Do i/o initializations before JPA to fail fast
program.init();
System.out.println("JPAQuery.main() -- starting JPA " + unitName);
// This would be done for you
// were you running in an EE App Server
EntityManager entityManager = null;
try {
entityMgrFactory =
Persistence.createEntityManagerFactory(unitName);
System.out.println("Created EntityManagerFactory");
entityManager = entityMgrFactory.createEntityManager();
// Delegate
program.run(entityManager);
} catch (Exception e) {
System.out.println("JPA failure: " + e);
e.printStackTrace();
return;
} finally {
if (entityManager != null)
entityManager.close();
if (entityMgrFactory != null)
entityMgrFactory.close();
}
}
Console console;
Mode mode = Mode.CONSOLE;
void init() {
if ((console = System.console()) == null) {
mode = Mode.SWING;
}
}
@SuppressWarnings("unchecked")
void run(EntityManager entityManager) throws Exception {
String queryStr;
Query query = null;
while(true) {
try {
queryStr = mode == Mode.CONSOLE ?
console.readLine("Enter JPA Query: ") :
JOptionPane.showInputDialog(null, "Enter JPA Query: ");
if (queryStr == null || "quit".equals(queryStr)) {
return;
}
query = entityManager.createQuery(queryStr);
List