Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
8answers
28k views

Why does Java have transient variables?

Why does Java have transient variables?
20
votes
3answers
10k views

Why does JPA have a @Transient annotation?

Java has the transientkeyword. Why does JPA have @Transient instead of simply using the already existing java keyword?
10
votes
1answer
324 views

Java: Static transient fields

I just found out in Java you can declare a field 'static transient' - the compiler doesn't complain. This doesn't seem to be useful in any way since static fields are not serialized, as we all know. ...
7
votes
1answer
160 views

Why is there no peek! function for clojure transient vectors?

Clojure has transient analogs for some of its persistent data structures, vectors, maps and sets. For vectors, there are pop! and conj! functions, analogous to pop and conj for persistent vectors, ...
5
votes
3answers
754 views

Can a transient field in a class be obtanied using reflection

Can a transient field in a class be obtained using reflection? (using getDeclaredField(..))
5
votes
4answers
170 views

Transient REST Representations

Let's say I have a RESTful, hypertext-driven service that models an ice cream store. To help manage my store better, I want to be able to display a daily report listing quantity and dollar value of ...
5
votes
2answers
1k views

Castle Windsor: Will my transient component be garbage collected?

Using Castle Windsor, I have a component configured with the transient lifestyle: <component id="publish.mapping.default" service="IMyService, MyAssembly" ...
4
votes
3answers
199 views

Map with timed/transient entries - memory not an issue

I'm trying to create a map in which the entries time out and get removed after a certain time period. Basically, <K, V> Map.put(K key, V value, long **time**) - the entry will be put in the map ...
4
votes
3answers
349 views

Transient collections for Scala?

Clojure has a very nice concept of transient collections. Is there a library providing those for Scala (or F#)?
3
votes
6answers
67 views

Which variables or Objects should be associated with transient keyword?

I have read about Serialization theory part , where it says it is required when an object state need to be persisted . I have written a Web Service Application , Where it will run on different JVMs ...
3
votes
1answer
38 views

Can I get the transient value in the processing of “CSS3 transient animation”

for example ,when I'm using transient to implement a 2s duration animation by change the value of translate(x, y). How can I get the current value of translate(x, y) at the 0.5s moment?
3
votes
5answers
102 views

Making an Exception field transient in Java

I have a class that extends Exception, and therefore has to be Serializable. The exception class contains a field that is not Serializable, so I was considering making it Transient. My understanding ...
3
votes
2answers
787 views

Core Data and transient properties

I'm having trouble with setting up a transient property in Core Data. The problem I'm trying to solve is: I have a collection of objects successfully stored using Core Data. This collection is ...
3
votes
1answer
332 views

I have a feeling that adding fields marked with @Transient annotation to entity is very bug-prone. Am I right?

I have some philosophical intuitive feeling that adding fields which doesn't mapped to the DB corrupts entity classes and is a wrong way of solving problems. But are there any concrete situations ...
3
votes
3answers
119 views

Why is the table attribute of Hashtable serialized?

Why is the table field of Hashtable serialized, although it is marked as transient?
2
votes
2answers
50 views

Scala Xml auto transient when value is null

I know to generate xml with pojo I can do something like this, class Person(name : String, age : Int){ def toXml() = <person><name>{ name }</name><age>{ age ...
2
votes
1answer
146 views

Need some help understanding transient properties in Core Data

I read the documentation on transient properties but I can't really understand their purpose. Can someone tell me the difference between having and not having a transient property if I have a custom ...
2
votes
4answers
133 views

Java static serialization rules?

I'm working on a save state serialization with a few static methods and fields. I could have sworn though that serialization and static's caused mayhem. Should I make all static's transient? And will ...
2
votes
2answers
154 views

Custom Sections in TableView

I have scoured some posts on this site but haven't found my exact issue so I am looking for some advice. I currently have an app with a TaskList entity which I use to back my current TableView. I ...
2
votes
1answer
186 views

Saving an object into an Entity without persisting it in JPA

I am doing an application in play framework in which I need to store the same instance of a non-Entity object into a JPA Entity without persisting it into the database, I want to know if it's possible ...
2
votes
1answer
436 views

Core Data, “sorting by transient property” workaround

Let's say I have a Core Data entity called Event, which represents recurrent (yearly) events. Each Event has a "date" property. I need to present this events to the user sorted by "next occurrence of ...
2
votes
1answer
300 views

Fluorine TransientAttribute and Linq-to-SQL

I've found a workaround, but I had trouble earlier this week working with FluorineFx, where I had a Linq-to-SQL–generated object I wanted to send over the wire to Flash. This object contained a ...
2
votes
3answers
317 views

Should @Transient property be used in equals/hashCode/toString?

this is a quick question: I have JPA entities where some properties are annotated with @Transient. Shall I use these properties in equals/hashCode/toString methods? My first thought is NO but.... ...
2
votes
2answers
616 views

readObject() vs. readResolve() to restore transient fields

According to Serializable javadoc, readResolve() is intended for replacing an object read from the stream. But surely (?) you don't have to replace the object, so is it OK to use it for restoring ...
2
votes
1answer
252 views

Null transient attributes

I have a method annotated with @PrePersist annotation but I've seen that when this method is executed all my transient attributes (the attributes with the @Transient annotation) are null. When I ...
2
votes
1answer
119 views

Should references in RMI exposed services be transient?

I'm exposing some services using RMI on Spring. Every service has a dependency to other service bean which does the real processing job. For example: <bean id="accountService" ...
2
votes
3answers
566 views

Loading Hibernate property from an external source (HashMap)

I have a Message object associated with a User object (user_from and user_to). I persist the Message instances into a database using Hibernate (with JPA annotations) and the user_id is persisted. The ...
2
votes
2answers
2k views

When to use SQLITE_TRANSIENT vs SQLITE_STATIC?

I would like to create/update text columns in sqlite3. When i retrieve rows after the create/update, the text is '?'. Integer values are properly persisted however. My text statements look like this: ...
1
vote
1answer
38 views

CDI constructor injection don't work with transient non-serializable dependencies

I like the constructor injection of CDI a lot but now I found a usecase where constructor injection apparently doesn't work as expected. In my example I have two classes. Class "BeanA" has no ...
1
vote
3answers
72 views

Can properties mapped in hbm.xml be transient?

Suppose I have a User entity like this: class User { private String login; transient private String hashedPassword; } I don't want to ever transfer hashedPassword to clients, so I make it ...
1
vote
1answer
59 views

Hibernate trying to serialize field marked @Transient

I'm trying to persist a set of what I would call relatively simple objects to database. Unfortunately, Hibernate seems to be ignoring the @Transient annotation (or it tries to serialize, even WITH the ...
1
vote
2answers
57 views

How to Force ObjectUtil.copy() to copy Transient attribute

I'd like to force the method ObjectUtil.copy() to copy the transient attribute... Do you have a solution to do that?Or do you know another method to copy my Object? Thank you very much, Bat
1
vote
1answer
35 views

Why would I use a transient attribute to represent a derived read only property in core data?

Is there any reason at all to model a transient attribute for a derived property if it is read only? It seems like a lot easier to just declare a property in my customized class and then calculate the ...
1
vote
1answer
121 views

Using transient attributes in Core-Data

I am not sure whether using transient attribute is the correct way for my situation. I am getting kind of feeds from server and stores in the core data. Am showing all these feeds in a TableView. ...
1
vote
2answers
116 views

Matlab OOP calling get method on save for transient property.

I'm trying to implement a class with a property that can be possibly provided to the constructor or possibly generated in some other method. I don't want the data saved to disk or generated on load. ...
1
vote
1answer
113 views

XJC non-transient non-serializable instance field data

After generating java classes I received: public class myClass { @XmlElement(name = "Data", required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar data; @XmlElement(name = ...
1
vote
3answers
307 views

NHibernate 2.1.2 unsaved transient instance

I have read many questions and answers, but I couldn´t find solution for my problem. The problem occurs when I migrated from NHibernate 1.2.1 to 2.1.2. I have this common error: object references an ...
1
vote
1answer
214 views

Display a domain transient property in scaffolded views

In my Grails 1.3.7 project I have a domain class like this: class User { String login String password String name String passwordConfirmation static constraints = { login unique:true, ...
1
vote
1answer
404 views

Core Data Transient Calculated Attributes

I have an entity that contains lastName and firstName attributes. For reasons beyond the scope of this question, I want a fullName attribute that gets calculated as a concatenation of firstName + ...
1
vote
1answer
1k views

Transient property in Grails domain

I have a Grails domain called People, and I want to check that each People has childs or not. Childs are other People objects. Here is my domain structure: class People implements Serializable { ...
1
vote
1answer
338 views

@transient lazy val field serialization

I have a problem on Scala. I serialize an instance of class with @transient lazy val field. And then I deserialize it, the field is assigned null. I expect the lazy evaluation after deserialization. ...
1
vote
1answer
161 views

Should I have to manually update a transient property even if dependent keys are defined?

I started working with transient properties a little while ago, and thought I understood them pretty well, but this one isn't behaving how I thought it would. It is defined in the data model as a ...
1
vote
2answers
210 views

CheckNullability of PrimaryKeyJoinColumn

I have a Entity class that has the ObjectX attribute: @OneToOne(fetch = FetchType.LAZY) @PrimaryKeyJoinColumn public ClassOfObjectX getObjectX() { return this.ObjectX; } This ObjectX can´t be null? ...
1
vote
2answers
233 views

SPARQL get all nodes of transient relation

Is it somehow possible to get the list of nodes connected through a transient relation with SPARQL? I have elements that are connected in this way: ?a g:eastOf ?b ?b g:eastOf ?c ... Not all nodes ...
1
vote
1answer
272 views

Castle Windsor - Lookup Method Injection for transient instances

The short question: Does Castle Windsor have something similar to Spring.Net's "Lookup Method Injection" that can be configured from XML, which provides the ability to fetch transient instances from ...
1
vote
1answer
363 views

AutoMapper classes with a Transient lifestyle in IoC

I'm using AutoMapper to map domain entities to view models in an Asp.Net MVC app. I register these mapping classes in Castle Windsor so they are available to the controller thru ctor dependency ...
1
vote
2answers
246 views

Doctrine adding a many-to-many relation for transient records

two models Site and Language share a many-to-many relationship (they are bi-directional) How do I add a relationship between them? Ideally I want to do this : (add an existing language to a new Site) ...
1
vote
1answer
216 views

Wordpress Transient

I am trying to learn some new database techniques and at the moment, I have a opportunity to apply and try something new. Wordpress coined some of it's values: "transient" and lock it on to a key ...
1
vote
1answer
2k views

Is this a valid use of Grails transients?

I have a domain object on which I want to store a few things which only exist at runtime. I looked at the documentation and found the transients keyword, which, on the face of it was what I was ...
1
vote
3answers
374 views

Java: accessing transient object fields inside class

Accessing private transient object fields from any method in class must be controlled with some code. What is the best practice? private transient MyClass object = null; internal get method: ...

1 2