2. Configure Gmail in Ms-Outlook
3. Configure your filters (if you need them)
2. Configure Gmail in Ms-Outlook
3. Configure your filters (if you need them)
The mail service providers such as MailChimp, Aweber, GetResponse, do not accept your email list because they are not opt-in.
Here is what you can do.
1. Setup your Gmail or POP3 account with Microsoft Outlook
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK.
It is currently set to “d:\devtools\java1.5\jre”
Step 1. Make sure mysql is up and running
Windows – Check in task manager for mysqld-nt
Linux based (Ubuntu, debian etc.,) – service mysql status
or ps -elf | grep mysql
Step 2. Make sure the port is in LISTEN mode
Windows – netstat -a | find LISTEN
Linux – netstat -a | grep LISTEN
There are not many resources on the net that shows how to setup up JackRabbit with database. At least I couldn’t find it. There are many reasons you would want to choose to implement the storage in database rather than file system. Well I’m not going to talk about that here. You read an interesting discussion on TheServerSide.
String query = "show tables like 'a%'"; String tables = null; try { Statement st = conn.createStatement(); ResultSet rs = st.executeQuery(query); while (rs.next()) { String tableName= rs.getString(1); if (tables == null) tables = tableName; else tables += "," + tableName; } st.close(); st = conn.createStatement(); st.executeUpdate("drop table " + tables); st.close(); } catch (SQLException e) { System.out.println("Unable to execute Query " + e.getMessage()); }
try { String url = "jdbc:mysql://localhost:3306/mydb"; Class.forName ("com.mysql.jdbc.Driver").newInstance (); Connection conn = DriverManager.getConnection (url, user, pwd); } catch (Exception e){ System.out.println("Unable to establish connection " + e.getMessage()); }
Features in v 0.1 beta
Features under development
Features in this release
1.Spring, Hibernate configuration files
2. Maven POM
Limitations
1. No option input package name
2. No option to include security (j2ee)