ObjectDB Database Search
1-50 of 56 resultsEclipse/JPA Spring MVC Web Tutorial This is the Eclipse version of the Spring MVC and JPA tutorial . It demonstrates  ... are stored in an ObjectDB database. Required Software For this tutorial you will need the following ... ) including Maven Integration for WTP (in m2eclipse extras). The tutorial was written for Eclipse 3 | |
NetBeans/JPA Web Application Tutorial This is the NetBeans version of the JPA Web App tutorial . It demonstrates how  ... entities are stored in an ObjectDB database. Required Software For this tutorial you will need ... (just download and extract). The tutorial was written for NetBeans 6.9.1 but it should work | |
Spring MVC and JPA Tutorial This tutorial demonstrates how to create and run a full Java Spring MVC (Model View Controller) web application using Tomcat (or GlassFish), JPA, ObjectDB and Maven. The demo web application manages ... an ObjectDB database. This tutorial is available in the following versions: In addition, the demonstrated application is available as a Maven project: | |
JPA Web App Tutorial - Maven Project The JPA Web Application tutorial provides step by step instructions on how to build a simple Java/JPA database driven web application (for Tomcat / Jetty) in Eclipse or NetBeans . Building a new application step by step is an effective way to learn - but if you prefer | |
Spring MVC JPA Tutorial - IntelliJ Project To open and run the Spring MVC JPA tutorial project in Download and extract the project zip file: Spring MVC JPA - Maven Project (8KB) Open the project in IntelliJ IDEA: Select File Open Project... . Select the guestbook-spring directory and click OK . Define | |
JPA Web App Tutorial - NetBeans Project To open and run the JPA Web Application tutorial project in NetBeans: Download and extract the project zip file: JPA Web App - Maven Project (6KB) Open the Maven project in NetBeans: Select File Open Project... . Select the guestbook-web directory and click Open | |
Java EE JPA Tutorial - Maven Project The Java EE Web Application tutorial provides step by step instructions on how to build a simple Java/JPA database driven web application (for GlassFish 3/ JBoss 6) in Eclipse or NetBeans . Building a new application step by step is an effective way to learn - but  | |
Guessbook tutorial: Java EE 6 JPA Tutorial - Maven Project I have a Max OSX Lion and am running Netbeans 7.2 with Glassfish 3.1.2. I download the tutorial and run it. The moment I type something in the sign in block and click add, I get the following error trace: (Does anyone know a fix?) WARNING: EJB5184:A system exception occurred | |
Tutorial issue Ok, so I'm stuck on the Eclipse tutorial . I have a number of other projects running in Eclipse ... steps two and three I used the source folder " Tutorial /src" which is what I used to create ... .PersistenceException Ambiguous entity name - Point (used by [point.Point, tutorial .Point]) (error 307 | |
Guestbook example from tutorial does not work. the tutorial and try to deploy on Tomcat but i get this error. Caused by: org.apache.tomee.catalina ... / tutorials /guestbook-jee6/target/Guestbook: org.apache.openejb.OpenEJBRuntimeException: java.lang ... cannot be found. You may want to try running the Maven version of this tutorial . support Support Thank | |
Guestbook Tutorial (Eclipse/Glassfish) I have the tutorial working which has been a great help in understanding how to use ObjectDB. I have found one problem. The database file (C:\glassfish3.1\glassfishv3\glassfish\domains\domain1\eclipseApps\Guestbook\WEB-INF\db\guests.odb) is reset on occasions; I am not sure what set of events | |
adding tutorial videos to youtube Hello , it will be good for you to add video tutorials for objectdb and explorer on youtube. kadirbasol Kadir BASOL | |
Is ObjectDB better than competing object databases?, supporting community, forums, IDEs support, tools, books, tutorials and sample code. ObjectDB | |
Getting Started with JPA and Eclipse This is the Eclipse version of the Quick Start with JPA tutorial . It demonstrates  ... . For this tutorial , besides the Java JDK (8 or above) and the Eclipse IDE (either Eclipse IDE for Java EE ... ). This tutorial was written for Eclipse 3.6.1 but it should work with other Eclipse versions as | |
Tutorial Typo I was going through the Eclipse Spring tutorial as part of my training, and I noticed this. On the page: http://www.objectdb.com/ tutorial /jpa/eclipse/spring/entity The tutorial first says: Enter META-INF as a new folder name and click Finish. Then, after the picture, it says: Right click | |
Step 2: Define a JPA Entity Class the [New Java Class] dialog box, e.g. by right clicking the tutorial package node (in the [Projects] window ... class name. The package name should be tutorial . Click Finish to create the new class. Use copy and paste to fill the new source file with the following content: package tutorial ; import java.io | |
How to resolve 404 errors with Eclipse/Maven Spring MVC I have created a project as guided by www.objectdb.com/ tutorial /jpa/eclipse/spring/run. When I ... my browser to localhost:8080/Guestbook/ it works as your tutorial says! However, when I use  ... so. Can someone help me! I've tried a lot of other tutorials and this is the only I can get to work | |
Step 5: Add a JSP Page content: JPA Guestbook Web Application Tutorial Name: The JSP generates the guestbook page output ... the controller in the previous step). The next step (and the last in this tutorial ) is setting the Spring XML configuration . | |
Report Generation with BIRT and JPA This tutorial demonstrates how to create reports based on data in an ObjectDB database using the popular open source Business Intelligence and Reporting Tools (BIRT). In order to keep things as ... Started tutorial . The database file contains 1,000 Point entities, which represent points on the line y | |
Step 4: Add a Controller Class the next tutorial step) - a new Guest entity is constructed and stored in the database. Processing is forwarded to a JSP page (which is presented in the next tutorial step) that generates the HTML output | |
Step 2: Define a JPA Entity Class To store objects in an ObjectDB database using JPA we need to define an entity class: Right click on the project in the [Package Explorer] window and select New Class . Enter tutorial as the package ... the new class. Copy and paste the following code into the newly created Point class: package tutorial | |
Step 4: Add a Servlet Class the next tutorial step) - a new Guest entity is constructed and stored in the database. All the Guest entities ... is forwarded to the JSP page (which is presented in the next tutorial step). The JSP uses the "guest | |
Step 1: Create a Java Project We start by creating a new NetBeans Project: Open the [New Project] dialog box, e.g. by using File New Project... Select Java Java Application and click Next . Choose a Project Name (e.g. Tutorial ). The name of the Main class should be tutorial .Main . Verify that exactly this case sensitive fully | |
Step 1: Create a Maven Web Project Name (e.g. Guestbook ) and select Java EE 5. Enter Maven Group Id (e.g. com.objectdb. tutorial .spring ... . tutorial .spring Guestbook war 1.0 Guestbook http://maven.apache.org UTF-8   | |
Step 4: Run the Application : This is the end of the tutorial . Learn more about ObjectDB and JPA by reading the Manual . | |
Step 6: Set the Spring XML the WEB-INF directory. The next step (and the last in this tutorial ) is running the Spring web application . | |
Step 1: Create a Maven Web Project; copy and paste to replace its content with the following settings: 4.0.0 com.objectdb. tutorial | |
Step 6: Set the Spring XML for JSP pages in the WEB-INF directory. The next step (and the last in this tutorial ) is running the Spring web application . | |
Step 7: Run the Spring Web App; ObjectDB Explorer : This is the end of the tutorial . Learn more about ObjectDB and JPA by reading the Manual . | |
List of Enum Values in an entity Hello, I'm new with ObjectDB and just tried out the example in the Eclipse/Glassfish tutorial ( https://www.objectdb.com/ tutorial /jpa/eclipse/ee ). After testing was successful, I extended the Guest ... . Guest 's toString is invoked in this tutorial on detached Guest instances, and in detached objects | |
ObjectDB CRUD Examples these manual pages . We do not have specific NetBeans examples in addition to the tutorials ... ." This is also demonstrated in the tutorials , which are small but full application examples. But these tutorials | |
app.jelastic.eapps.com and objectdb on that hosting? If you do, then following this tutorial you can also add ObjectDB. support Support Hi ... of ObjectDB files would be as usual, as demonstrated in the ObjectDB web application tutorials . Note | |
Embedded mode usage question. This is demonstrated for example on this tutorial . For real concurrent multi threading you just have to use ... demonstrated in that tutorial ), and actually there is no difference between client-server mode and embedded | |
Jboss 6 persistence.xml startup error 6 Guestbook tutorial adjusted to JBoss AS 6.0 (including the objectdb-jee.jar ) is attached. Just | |
Database is erased after deploying a new web application version a listener for creating and destroying the EntityManagerFactory: https://www.objectdb.com/ tutorial | |
JDeveloper Is there a tutorial or instructions as how to setup a connection in JDeveloper to ObjectDB? Thanks nat nat101 Nat Gross No, but you may be able to use the Maven examples (included in the ObjectDB download file) by importing them to JDeveloper. support Support ok. thanks. nat101 Nat Gross | |
Attempt to begin a new transaction when a transaction is active do it for you (see this tutorial ). support Support Thank you very very much! adibe Adi Be | |
javax.persistence.PersistenceException tried the tutorial example in a pure java project it worked fine. trying to use it in an EclipseRCP | |
Evaluation License return for this help. Possible help includes developing open source tools, writing ( tutorials | |
Persist not working when ObjectDB and another db is used in the same application (through spring) with different tx managers of the persistence unit (you use a definition from our Spring Framework tutorial that is good only when there is only one persistence unit): | |
Configure ObjectDB in spring context You can see how to use ObjectDB with Spring Framework in this tutorial . support Support Yes I've seen | |
Cast exception? under the extension folder loads properly, so I put the ObjectDB points tutorial (exported) jar into | |
EntityManager getMetamodel() causes crash I am trying to track down some obscure errors with multi-threading. This involved looking at the EntityManager Metamodel but this caused an ObjectDB exception. So I reverted to your example code in the tutorial (with class Point ) and it works as expected: : (995, 995) (996, 996) (997 | |
ObjectDB within a resource adapter module and Java EE Connector Architecture tutorial in Figure 5-1 EAR File Structure ? webel Dr Darren Kelly Support of the Java EE | |
Error occured during initialization of boot layer I am trying to implement a database using ObjectDB. To get started i want to write Entities of Type RequirementDBEntity into a database. I followed the tutorials here but when launching the program, i get the following error: Error occurred during initialization of boot layer java.lang.module | |
Is there any faster select method? SELECT: TypedQuery query = em.createQuery( "SELECT p FROM Point p WHERE p.id = " + element.getId(), Point.class); List points = query.getResultList(); WRITE: em.persist(p); ** the Point class is of the tutorial . I found the above select method is ten times slower | |
New to Product & Having An Issue Greetings ObjectDB Users! I'm new to the product, and I've setup a simple test after reading the tutorial , and I'm running into some issues with queries, specifically querying by primary key. I have a domain object class Called Department, which has a member of type DomainId.  | |
auto-generated uuid fields Hello, we're porting a JDO application to ObjectDB which uses uuid-hex generated values. However the page on generated values in your JPA tutorial only mentions numeric generated values, and when we try to use it the error message seems to imply that auto-generating strings isn't supported | |
com.objectdb.o.InternalException: java.lang.NoClassDefFoundError: java/sql/Date.lang.ClassLoader.loadClass(ClassLoader.java:520) ... 15 more I'm following this tutorial | |
auto-generated uuid fields Hello, we're porting a JDO application to ObjectDB which uses uuid-hex generated values. However the page on generated values in your JPA tutorial only mentions numeric generated values, and when we try to use it the error message seems to imply that auto-generating strings isn't supported |