on code

Monday, November 9, 2009

SQLAlchemy - The Database Toolkit for Python

SQLAlchemy - The Database Toolkit for Python

I need to explore the world of ORM'ing in Python. Python might just be the best cloud option going these days.

Friday, November 6, 2009

Spring with gwt-dispatch

pgt » Use Spring with GWT dispatch

So inspired by this post and the discussion over in the gwt-dispatch group I have converted my application over from Guice to Spring. The only variance from the pgt blog post is that I am using net.customware.gwt.dispatch.server.spring.SpringStandardDispatchServlet in my web.xml. Other than that my action handlers are getting called as expected.

Wednesday, November 4, 2009

InfoQ: Java Card 3 Includes Java 6 Support and an Embedded Servlet Container

InfoQ: Java Card 3 Includes Java 6 Support and an Embedded Servlet Container

Wow Tomcat in your pocket. This might expand some possibilities for iPhone applications.

Tuesday, November 3, 2009

Raible Designs | Running Hosted Mode in GWT Libraries (when using Maven)

Raible Designs | Running Hosted Mode in GWT Libraries (when using Maven)

Linking to Matt Raible's notes on the GWT Maven plugin setup. I have basically the same findings.

I've added the maven-war-plugin for building a war for deployment. I've also had some problems since I'm not on Snow Leopard yet and there are JDK 1.6 issues with GWT and JDK 1.6 on Leopard.

Monday, November 2, 2009

pgt » Use Spring with GWT dispatch

pgt » Use Spring with GWT dispatch

Working on converting my servlet implementation for gwt-dispatch from Guice to Spring.

Tuesday, October 27, 2009

Thoughts on GWT, MVP and GWT-EXT

Thoughts on GWT, MVP and GWT-EXT

Putting some GWT-related posts over on my blog that primarily speaks to Java-related topics.

Tuesday, October 6, 2009

test post

This is SQL:


SELECT *
FROM users
WHERE user_id = 1212;


This is Java:


package com.gwt.client.gin;

import net.customware.gwt.presenter.client.place.PlaceManager;

import com.google.gwt.inject.client.GinModules;
import com.google.gwt.inject.client.Ginjector;
import com.gwt.client.mvp.AppPresenter;

@GinModules({ ListClientModule.class })
public interface ListGinjector extends Ginjector {

AppPresenter getAppPresenter();

PlaceManager getPlaceManager();

}