资 源 简 介
Sandbox Web Application @ Intersoft
Technologies
JBoss Application Server 4.2.3
Add postgresql8.4 jdbc driver to
$JBOSS_HOME/server/default/lib/
### Postgresql 8.4 ###
Schema creation script can be found in Downloads section. But anyways, its here:
create sequence news_seq start 1;
CREATE TABLE news
(
id integer NOT NULL,
header text NOT NULL,
tag text,
description text,
created date NOT NULL default current_date,
CONSTRAINT news_pkey PRIMARY KEY (id)
);
```