You may need to do this occasionally, for example if you want to access a service from your Application or Session object.
You do it like this: InjectorHolder.getInjector().inject(object);
Monday, August 18, 2008
Saturday, July 5, 2008
My simplest log4j.properties
I don't mind log4j, but I don't like configuring it. Why doesn't it just log everything on info by default? Instead, you HAVE to configure it. And because I've always wanted it to just work, I've never bothered to learn its intricacies (of which there are many). So, here is my super simple log4j.properties, for others that just want it to log stuff:
log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
log4j.appender.STDOUT.layout=org.apache.log4j.PatternLayout
log4j.appender.STDOUT.layout.ConversionPattern=%d %p [%t] %C{1} - %m\n
log4j.category.com.myapp=INFO, STDOUT
log4j.category.org.hibernate=ERROR, STDOUT
log4j.category.org=INFO, STDOUT
log4j.category.com=INFO, STDOUT
log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
log4j.appender.STDOUT.layout=org.apache.log4j.PatternLayout
log4j.appender.STDOUT.layout.ConversionPattern=%d %p [%t] %C{1} - %m\n
log4j.category.com.myapp=INFO, STDOUT
log4j.category.org.hibernate=ERROR, STDOUT
log4j.category.org=INFO, STDOUT
log4j.category.com=INFO, STDOUT
Tuesday, May 20, 2008
Wicket components not being created when visible = false
Came across an interesting one today... if you have a component in Wicket with visible=false when the page is rendered the first time, the markup for that component is not sent to the browser at all. The end result is that you cannot use Ajax to make the component visible at a later stage. Turns out there is an easy way around this though, just call setOutputMarkupPlaceHolderTag(true) on the component, and a placeholder tag is sent ot the browser, which can later be replaced with Ajax.
Saturday, March 29, 2008
ZK Example Application with: Maven, Spring, Hibernate, Acegi
I've been working with ZK for a while now, and like its ease of use and low learning curve. However, I had a pretty hard time using it with some of my other favourite frameworks, specifically: Maven, Spring, and Acegi. Also, I found some of the issues around navigation and the initial setup a bit confusing.
Something that would have helped me a lot would have been an example that includes a full Spring / Acegi setup, packaged with Maven so it works 'out of the box', including a couple of screens that actually does your regular search / crud operations. So, I've decided to extract such an example from a project I've been working on. This is just my tiny contribution to the ZK community.
This example app includes all of the above, as well as using Hibernate for persistence, though that is all wrapped in Spring and accessed via services. It's far from perfect, but I think it's a good start. I would greatly appreciate any feedback or suggestions if anyone uses this.
Download:
Download the project as a ZIP file from here.
Usage:
When you launch, you will be presented with a login screen. The Acegi setup is such that a hard-coded user 'admin' with password 'password' can log in only until an actual user exists in the database. The system has screens for administering users, roles and privileges.
Initial setup:
Firstly, you will need Maven, Java, and a database. The example application uses PostgreSQL. To use a different DB setup, edit the following files:
I use idea, but eclipse is pretty similiar
The first thing you'll probably want to change is the name, to do this refactor all the packages from 'zkskeleton' to something appropriate. You will also need to change the project directories and xml file names. Then do a global search and replace from 'zkskeleton' to your application name. You will probably also want to change the DB setup, this can be done as explained above.
Architecture:
Of course there are lots of clever ways to do this, but my architecture looks something like this:
PS: The idea behind the navigation is borrowed from the ZK demo app, I hope they don't mind. Since that source is freely available it's probably fine, just giving credit where it's due though.
Something that would have helped me a lot would have been an example that includes a full Spring / Acegi setup, packaged with Maven so it works 'out of the box', including a couple of screens that actually does your regular search / crud operations. So, I've decided to extract such an example from a project I've been working on. This is just my tiny contribution to the ZK community.
This example app includes all of the above, as well as using Hibernate for persistence, though that is all wrapped in Spring and accessed via services. It's far from perfect, but I think it's a good start. I would greatly appreciate any feedback or suggestions if anyone uses this.
Download:
Download the project as a ZIP file from here.
Usage:
When you launch, you will be presented with a login screen. The Acegi setup is such that a hard-coded user 'admin' with password 'password' can log in only until an actual user exists in the database. The system has screens for administering users, roles and privileges.
Initial setup:
Firstly, you will need Maven, Java, and a database. The example application uses PostgreSQL. To use a different DB setup, edit the following files:
- zkskeleton-persistence/pom.xml (The driver from Maven)
- zkskeleton-datasource-context.xml (Connection when deployed)
- zkskeleton-domain-test-context.xml (Connection for integration tests)
CREATE USER zkskeleton WITH PASSWORD 'zkskeleton' createdb nosuperuser;To get it running:
CREATE DATABASE zkskeleton WITH OWNER = zkskeleton;
\c zkskeleton
CREATE SCHEMA zkskeleton AUTHORIZATION zkskeleton
- Unpack it somewhere
- mvn clean install
- Deploy the WAR from zkskeleton-web/target/zkskeleton.war
I use idea, but eclipse is pretty similiar
- mvn idea:clean idea:idea -DdownloadSources=true
- Open the project file
The first thing you'll probably want to change is the name, to do this refactor all the packages from 'zkskeleton' to something appropriate. You will also need to change the project directories and xml file names. Then do a global search and replace from 'zkskeleton' to your application name. You will probably also want to change the DB setup, this can be done as explained above.
Architecture:
Of course there are lots of clever ways to do this, but my architecture looks something like this:
- Domain layer depending on nothing, containing the domain entities
- Persistence layer depending on Domain, containing Hibernate crud stuff
- Service Shared layer depending on Domain (bad thing, but I can live with it for purely web based) containing service interfaces and DTO's
- Service depending on Service Shared containing service implementations
- UI layer depending on Service Shared containing ZK classes, controllers and extensions
- Web layer depending on Service and UI, containing the ZK markup files, webapp setup, and Acegi and service wiring.
PS: The idea behind the navigation is borrowed from the ZK demo app, I hope they don't mind. Since that source is freely available it's probably fine, just giving credit where it's due though.
Saturday, January 26, 2008
ZK: Non-serializable attribute error on StandardSession
I got this one while starting up Tomcat and struggled with it for probably two days. The stack trace looks something like this:
SEVERE: Servlet.service() for servlet zkLoader threw exception
java.lang.IllegalArgumentException: setAttribute: Non-serializable attribute
at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1293)
at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1254)
at org.apache.catalina.session.StandardSessionFacade.setAttribute(StandardSessionFacade.java:130)
at org.zkoss.zk.ui.http.WebManager.newSession(WebManager.java:308)
at org.zkoss.zk.ui.http.WebManager.getSession(WebManager.java:320)
at org.zkoss.zk.ui.http.WebManager.getSession(WebManager.java:287)
The problem was a tag in my web.xml. I must have clicked it on in IDEA's graphical view of the web.xml. Just remove the tag and you're good to go.
SEVERE: Servlet.service() for servlet zkLoader threw exception
java.lang.IllegalArgumentException: setAttribute: Non-serializable attribute
at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1293)
at org.apache.catalina.session.StandardSession.setAttribute(StandardSession.java:1254)
at org.apache.catalina.session.StandardSessionFacade.setAttribute(StandardSessionFacade.java:130)
at org.zkoss.zk.ui.http.WebManager.newSession(WebManager.java:308)
at org.zkoss.zk.ui.http.WebManager.getSession(WebManager.java:320)
at org.zkoss.zk.ui.http.WebManager.getSession(WebManager.java:287)
The problem was a
Saturday, August 4, 2007
Hibernate / PostgreSQL issue: operator does not exist: bigint = bytea
This one comes up during HQL and criteria queries seldom enough to confuse the hell out of me every time I see it. However, the problem is always exactly the same thing:
You are generating your schema from your hibernate mappings, and one of your query parameters are either null or transient.
What happens is that the generated schema, with postgresql, uses bytea as the type of the foreign key when mapping collections. Describe the table that the collection gets persisted in and you'll see it. Then, Hibernate does explicit typecasting to change it to an int or bigint when you pass in a value, but when you pass in null it breaks down and you get the above error.
You are generating your schema from your hibernate mappings, and one of your query parameters are either null or transient.
What happens is that the generated schema, with postgresql, uses bytea as the type of the foreign key when mapping collections. Describe the table that the collection gets persisted in and you'll see it. Then, Hibernate does explicit typecasting to change it to an int or bigint when you pass in a value, but when you pass in null it breaks down and you get the above error.
Friday, July 27, 2007
ZK, EL and XML Escaping
If you've worked with ZK for a bit, you will know that it uses an EL style of expression to set values and perform actions anywhere in the page. Which means you should be able to do something like:
<radio label="Sale" onCheck="${priceLabel.value='fruit'}"/>
However, this is not correct, in fact EL expressions will not be evaluated at all for the above line. The correct way to do it is as follows:
<radio label="Sale" onCheck="priceLabel.value="fruit""/>
Why? The developers guide explains it: "you could use EL expressions in any part of ZUML pages, except the names of attributes,
elements and processing instructions"
As the above is a processing instruction, you need to drop the EL syntax, which is a little strange as the syntax remains the same and is apparently still processed by BeanShell. Oh well. As for the escaping, that's just well-formed XML.
<radio label="Sale" onCheck="${priceLabel.value='fruit'}"/>
However, this is not correct, in fact EL expressions will not be evaluated at all for the above line. The correct way to do it is as follows:
<radio label="Sale" onCheck="priceLabel.value="fruit""/>
Why? The developers guide explains it: "you could use EL expressions in any part of ZUML pages, except the names of attributes,
elements and processing instructions"
As the above is a processing instruction, you need to drop the EL syntax, which is a little strange as the syntax remains the same and is apparently still processed by BeanShell. Oh well. As for the escaping, that's just well-formed XML.
Subscribe to:
Posts (Atom)