generally in ORM and OOP , a transient object is an object that has not been saved to DB yet

learn more… | top users | synonyms

1
vote
1answer
20 views

How should Transient Resources be retrieved in a RESTful API

For a while I was (wrongly) thinking that a RESTful API just exposed CRUD operation to persisted entities for a web application. When you code something up in "the real world" you soon find out that ...
2
votes
1answer
89 views

Why does ArrayList implement Serializable?

I tried to serialize an ArrayList with JAXB and failed. Is this because elementData is marked as transient? Why does the ArrayList implement the Serializable Inferface and has it's data transient? I ...
1
vote
1answer
35 views

Is concurrent synchronization on JPA entity's transient fields necessary?

We know that two threads manipulating the same entity at the same time, will throw an OptimisticLockException if all defaults apply. What happens if the field(s) that the threads manipulated, was ...
1
vote
2answers
62 views

CoreData transient relationship example

Does anybody have an example on how to model and code a transient to-one relationship in CoreData? For example, I have 2 entities with a one-to-many relationship. Doctor and Appointment. Now I want ...
0
votes
0answers
23 views

Cleaner way to write this? one post from each category WordPress Transients?

Wordpress Question on cleaning up this code. Seems too many queries - is there a cleaner option? I have a conditional on loop.php to require_once this partial only on the homepage My question is - ...
15
votes
5answers
300 views

Can transient keywords mark a method?

In a java class java.util.Locale, I find that the keyword transient marked a method. public final class Locale implements Cloneable, Serializable { private static class LocaleNameGetter ...
0
votes
6answers
35 views

Dummy values of serialized variable

Why default values as Zero are displayed for transient variables in Java? How does it know that the value should be 0 for integer and null for String?
0
votes
1answer
61 views

Strategy for [lazy-]loading Core Data properties asynchronously

Let's say that you're modelling take-out restaurants in Core Data. Each Restaurant should have a phoneNumber property, but it will be different depending on the user's street address. Have no fear, ...
0
votes
0answers
38 views

how to use managedBean created before page navigation

Page foo.xhtml -------------- <f:view transient="#{fooBean.transient}"> ... </f:view> @ViewScoped("fooBean") public class FooBean { private boolean _transient = false; ...
0
votes
2answers
30 views

Nullify transient references in Hibernate

I have a scenario where I need to Delete a parent entity and In doing so I need to nullify the references associated with the parent. e.g. I have two tables/entities Person and Address. Person is the ...
0
votes
2answers
120 views

Custom Core Data SectionNameKeyPath

I am new at core data and am trying to figure out how to create a custom sectionnamekeypath in my fetched results controller. I have a managed object with an attribute called acctPeriod. It is a ...
0
votes
2answers
119 views

Transient field not null when loading entity second time using HSQLDB

I have an Entity that, simplified, looks like this: @Entity @Table(name = "SOMETABLE") public class SomeEntity { // real code has id and more columns @Column(name = "SOMECOLUMN") ...
7
votes
2answers
528 views

Using Transient Entity in Hibernate to Update/Merge an existing Persistent Object

I am dealing with a fairly complex object graph in my database. I am using XStream to serialize and deserialize this object graph which works fine. When I import an object graph of an object that ...
0
votes
1answer
55 views

Flex transient dto stop collectionChanged event custom ComboBox

I am having an issue with the collectionChanged event being fired when a transient property of a DTO is changed. I have a custom ComboBox, which has a CheckBox itemRenderer for each row, that stays ...
0
votes
1answer
32 views

Merging deserialized objects with their originals

I am implementing a client server protocol using UDP sockets for a game in java. I am sending user input from the client to the server, where the server processes the input and updates a Level object ...
0
votes
2answers
93 views

Coredata - Using configurations to manage transient entities

I'm trying to use configurations to manage transient entities in core data. First, i have created 2 coredata configurations named "Persistent" and "Transient". Then, i have created the entities and ...
0
votes
4answers
182 views

why transient variable's state is stored in singleton object?

package p1; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import ...
1
vote
0answers
57 views

Avoiding debugger halt using Transient Fault Handling Application Block

I started using Transient Fault Handling Application Block (TFHAB) together with Azure Caching. It's easy to use but when in debugger, the error thrown within caching provider and passed out from ...
0
votes
1answer
48 views

Does ASP .Net MVC have anything similar to Java's [Transient] attribute?

As the title says, is there a way in ASP .Net MVC (4) to mark a models property as "Transient" i.e. not persist to database. I am looking to make a model to which most of the data is stored in an ...
0
votes
0answers
25 views

How can I add get_transient to a javascript call to php database access?

how can I add set_transient to the php code in the following ajax call to php code on the server. When i added it to data.php, it has set_transient function not recognized error. <script ...
2
votes
3answers
105 views

JPA manytomany transient collection

I would like to have a queriable collection in my entity that does not persist. In other words, a transient ManytoMany relationship. I have tried: @Transient @ManyToMany(fetch = FetchType.EAGER) ...
0
votes
1answer
29 views

Performing an intensive task in the getter of a transient property in Core Data

I have an entity named Group. The Group entity has a transient attribute named displayImage. This displayImage is computed on the fly. The computations involve 2 or more image rotations, scaling. and ...
1
vote
1answer
155 views

Hibernate: making transient objects persistent with Session

I've seen in http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/objectstate.html Use the Hibernate Session to make an object persistent But I don't know if it means literally using ...
0
votes
0answers
132 views

Using domain classes as both persistent and transient?

I am implementing a trading system, and I want to use the same code for both live trading and backtesting. When doing live trading, I need to persist everything that happens, but when backtesting, I ...
4
votes
5answers
108 views

Java : Does transient objects be garbage collected

My program showed trends of memory leak. When the memory usage reached the peak, the GC count was more and the objects were garbage collected. We found that a class which was the reason for the ...
0
votes
1answer
232 views

transient keyword with JPA not working as expected

I've read the discussion between @transient and transient keyword: Why does JPA have a @Transient annotation? But when I make certain field transient using the java keyword and NOT the @Transient ...
1
vote
1answer
255 views

ManagedProperty of SessionScope inside a ViewScoped Bean - Transient?

I have a JSF Beans structure of this sort: @ManagedBean @ViewScoped public class ViewBeany implements Serializable { .... @ManagedProperty(value='#{sessionBeany}) transient private ...
1
vote
1answer
69 views

How to update the instances of mapped entity classes using hibernate session methods?

I need to update two fields 'from' and 'to' of bp. p is also being fetched along with bp. Automatic flushing is disabled, so I have to do flushing explicitly. Query q = session ...
0
votes
1answer
71 views

Why this calculated property in my OpenXava transient view is not working

first to all this new thread is related to this one: Updating certain view programmatically from a JMS listener class Now, additional to this lack of server-push feature, I have other problem with a ...
1
vote
1answer
230 views

When does Castle Windsor release transient components

I'm coming from a background with Java and Spring, and I am rather new with Castle Windsor. I've read that it is important to know when transient components will be released by Castle since it tracks ...
1
vote
1answer
256 views

What is the purpose of AccessType.FIELD, AccessType.PROPERTY and @Access

I just want to know what is the difference between all these annotations. Why are we using these... means they have no effect especially field level and property level. And what is the purpose of ...
1
vote
1answer
131 views

Wordpress get_transient() returning an encoded string sometimes instead of array

I have been trying to make a custom twitter widget which displays the last few tweets from multiple feeds. Each feed creates an instance of the following Class: <?php class Foo{ protected $name ...
0
votes
1answer
185 views

Woocommerce/Wordpress Update Transient Values for Layered Navigation

I am writing an addon for the WooCommerce plugin for Wordpress that allows product imports from an excel spreadsheet. All the products import just fine, but I am having trouble updating the layered ...
0
votes
1answer
145 views

Issues using WordPress transient caching and AJAX json script

I have a WordPress plugin that I am working on that Polls all the major Social Networking sites and returns the social counts ( followers ) for a specific user. This can be quite slow and intensive ...
1
vote
1answer
100 views

NullPointerException when trying to get input for a serializable object

I have 3 classes: Main, ContactLibrary, and ContactInfo. ContactLibrary contains an ArrayList called myPhoneBook. ContactInfo is made up of a bunch of strings containing name, address, etc. The user ...
0
votes
0answers
44 views

Android Context - should it be marked transient all the time

I realize an object should be marked transient when you are serializing and it cant be included in the write. I'm using PMD to analyse code, and in a service i have (android) PMD mentioned that my ...
1
vote
2answers
145 views

Castle Windsor when is transient with disposable released? Burden

We're using Castle Windsor 2.1.0.6655. I'm wanting to use transient lifecycle for my resolved objects, but I'm wanting to check how this version of Castle deals with transients that have ...
2
votes
1answer
104 views

Notifications for volatile attributes in EMF

In an Ecore model with an attribute that is declared as transient and volatile (its value is calculated from several other fields), is there a canonical way to generate notifications for changes to ...
1
vote
1answer
274 views

How to resolve a TransientObjectException that honestly does not make sense

I am using Hibernate 4.1 and I'm getting the following exception whenever I try and store a list of transient tags that have been added to a collection for an object. ...
0
votes
1answer
555 views

Unable to determine if entity is transient or detached

I am getting a weird error in NHibernate (v3.3), when trying to persist an entity with a manually generated ID: Unable to determine if {Entity} with assigned identifier {Id} is transient or ...
2
votes
2answers
196 views

Tricky situation with serializing and deserializing transient objects

[SOLVED by @AmidD] Here's my code: class Collar { int size; } class Dog implements Serializable { int weight; transient Collar c; public Dog(int weight, int size) { this.weight = ...
1
vote
1answer
173 views

how to store TimeStamp into db4o database

I am trying to store timestamps into a db4o database, but the stored timestamps which store a few mninutes ago are much different from the current date. Here are example outputs: 1969-12-31 ...
0
votes
1answer
239 views

TransientObjectException when searching 'by entity'

I have a two-part question about my Spring MVC 3 with JPA/Hibernate setup. First, it doesn't matter whether I put a @Transactional annotation on my service methods, it just always works and I find ...
3
votes
1answer
187 views

Is there any difference between 'static transients' and 'transient Type aField' declaration for GORM?

Let us consider two Grails domain example classes. 1st class: class Person { String name Integer counter = 0 static transients = ['counter'] } 2nd class: class Vehicle { String ...
2
votes
1answer
93 views

JDO: How to make a detached object transient?

I'm using DataNucleus 2 JDO implementation. I have a detached object that i must attach, BUT i don't want to attach ALL the fields (in this case, a collection) public class Obj { private String ...
3
votes
2answers
225 views

A transient final field used as a lock is null

The following code throws a NullPointerException. import java.io.*; public class NullFinalTest { public static void main(String[] args) throws IOException, ClassNotFoundException { Foo ...
1
vote
2answers
244 views

Grails many to many with 3 classes: sorting by the number of relationships

Let's say we have 3 domain classes: 2 classes related with each other through a 3rd class. Ok, some code: class A { String subject String description static hasMany = [cs: C] ...
0
votes
1answer
67 views

How do I instantiate transient members after an object is read from mongodb

I'm using MongoRepository for saving/retrieving an object in MongoDB. I have an object with properties defined as such: @Document public class ConfigurationItem { String s1; @Transient ...
0
votes
2answers
708 views

iOS - How to refresh/update Core Data transient property?

I'm using a core data, NSFetchedResultsController UITableView, with a transient NSDate attribute. The main reason I have this as a transient property is so my UITableView entries get put into sections ...
1
vote
1answer
367 views

My entities are not persisting, but I can read from the database fine

I have just updated to Hibernate 4.1.5 and Spring 3.1.2 (from 2.6ish and 2.5 or something...). I have managed to set everthing up to read from the existing database, and all pages display fine, ...

1 2 3 4