01: /*
02: * Wilos Is a cLever process Orchestration Software - http://www.wilos-project.org
03: * Copyright (C) 2006-2007 Paul Sabatier University, IUP ISI (Toulouse, France) <massie@irit.fr>
04: *
05: * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
06: * General Public License as published by the Free Software Foundation; either version 2 of the License,
07: * or (at your option) any later version.
08: *
09: * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11: * GNU General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public License along with this program; if not,
14: * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15: */
16:
17: package wilos.application.console;
18:
19: import org.springframework.context.ApplicationContext;
20: import org.springframework.context.support.ClassPathXmlApplicationContext;
21:
22: import wilos.hibernate.misc.project.ProjectDao;
23: import wilos.model.misc.project.Project;
24:
25: public class saveProjectTest {
26:
27: public static void main(String[] args) {
28: ApplicationContext ctx = new ClassPathXmlApplicationContext(
29: "applicationContext.xml");
30: Project project = new Project();
31: ProjectDao projectDao = (ProjectDao) ctx.getBean("ProjectDao");
32: project.setConcreteName("projTest");
33: projectDao.saveOrUpdateProject(project);
34: }
35:
36: }
|