http://docs.ofbiz.org/display/OFBIZ/Running+and+Debugging+OFBiz+in+Eclipse It works
Thank you, BJ Freeman. -----Original Message----- From: BJ Freeman [mailto:[email protected]] Sent: 2009年3月30日 16:53 To: [email protected] Subject: Re: OFBiz's jdbc driver -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 here is a good place to become familar with. http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo there is a section on eclipse one of them is http://docs.ofbiz.org/display/OFBIZ/Running+and+Debugging+OFBiz+in+Eclipse hope that helps Jack Liu sent the following on 3/30/2009 1:14 AM: > If I start OFBiz with startOfBiz.bat, it' ok, > while in eclipse, I run Start.java, it fails. > > > -----Original Message----- > From: Jack Liu [mailto:[email protected]] > Sent: 2009年3月30日 15:22 > To: [email protected]; Jacques Le Roux > Subject: RE: OFBiz's jdbc driver > > No, but debug in eclipse. > Anything wrong in build path? > > > -----Original Message----- > From: Jacques Le Roux [mailto:[email protected]] > Sent: 2009年3月30日 15:17 > To: [email protected] > Subject: Re: OFBiz's jdbc driver > > Did you make some changes ? > > Jacques > > From: "Jack Liu" <[email protected]> >> I downloaded OFBiz trunk version. >> But when I am starting OFBiz, below errors occur: >> >> >> org.ofbiz.base.start.StartupException: Cannot start() >> org.ofbiz.commons.vfs.CommonsVfsContainer (Initializing >> StandardFileSystemManager (Could not load VFS configuration from >> "file:/C:/workspace/ofbiz/bin/META-INF/vfs-providers.xml".)) >> at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:103) >> at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263) >> at org.ofbiz.base.start.Start.startServer(Start.java:312) >> at org.ofbiz.base.start.Start.start(Start.java:316) >> at org.ofbiz.base.start.Start.main(Start.java:399) >> org.ofbiz.base.container.ContainerException: Initializing >> StandardFileSystemManager (Could not load VFS configuration from >> "file:/C:/workspace/ofbiz/bin/META-INF/vfs-providers.xml".) >> at >> org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48) >> at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101) >> at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263) >> at org.ofbiz.base.start.Start.startServer(Start.java:312) >> at org.ofbiz.base.start.Start.start(Start.java:316) >> at org.ofbiz.base.start.Start.main(Start.java:399) >> Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS >> configuration from >> "file:/C:/workspace/ofbiz/bin/META-INF/vfs-providers.xml". >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129) >> at >> org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351) >> at >> org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345) >> at >> org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43) >> ... 5 more >> Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers >> registered for URL scheme "ofbiz-home". >> at >> org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195) >> ... 10 more >> org.ofbiz.base.container.ContainerException: Initializing >> StandardFileSystemManager (Could not load VFS configuration from >> "file:/C:/workspace/ofbiz/bin/META-INF/vfs-providers.xml".) >> at >> org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:48) >> at org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:101) >> at org.ofbiz.base.start.Start.startStartLoaders(Start.java:263) >> at org.ofbiz.base.start.Start.startServer(Start.java:312) >> at org.ofbiz.base.start.Start.start(Start.java:316) >> at org.ofbiz.base.start.Start.main(Start.java:399) >> Caused by: org.apache.commons.vfs.FileSystemException: Could not load VFS >> configuration from >> "file:/C:/workspace/ofbiz/bin/META-INF/vfs-providers.xml". >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:199) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configurePlugins(StandardFileSystemManager.java:156) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.init(StandardFileSystemManager.java:129) >> at >> org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:351) >> at >> org.webslinger.commons.vfs.VFSUtil.createStandardFileSystemManager(VFSUtil.java:345) >> at >> org.ofbiz.commons.vfs.CommonsVfsContainer.start(CommonsVfsContainer.java:43) >> ... 5 more >> Caused by: org.apache.commons.vfs.FileSystemException: Multiple providers >> registered for URL scheme "ofbiz-home". >> at >> org.apache.commons.vfs.impl.DefaultFileSystemManager.addProvider(DefaultFileSystemManager.java:174) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.addProvider(StandardFileSystemManager.java:362) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:262) >> at >> org.apache.commons.vfs.impl.StandardFileSystemManager.configure(StandardFileSystemManager.java:195) >> ... 10 more >> >> -----Original Message----- >> From: BJ Freeman [mailto:[email protected]] >> Sent: 2009年3月27日 18:03 >> To: [email protected] >> Subject: Re: OFBiz's jdbc driver >> > DBCP connection pool that is now the default connection pool manager in > OFBiz (the old Minerva connection pool has been disabled by default) > as far as Jdbc except for the OTTB DB there are no jdbc drivers included > in ofbiz trunk. > Depending on the installation and DB used the installer has to determine > the correct jdbc for the DB they are connected to. > > > Jack Liu sent the following on 3/27/2009 2:21 AM: >>>> OFBiz uses ofbiz-minerva.jar >>>> >>>> -----Original Message----- >>>> From: Jack Liu [mailto:[email protected]] >>>> Sent: 2009t327 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJ0IiIrP3NbaWWqE4RArTpAJ47SByD2mytLZHlKkrUQfgvhjgNhgCeKeWG C+k1QHpowAhTD6H8fLSgFBA= =zfw7 -----END PGP SIGNATURE-----
