Tagged Questions

5
votes
7answers
2k views

Why does Java have transient variables?

Why does Java have transient variables?
4
votes
4answers
72 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 an …
2
votes
3answers
114 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_i …
1
vote
1answer
18 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" …
1
vote
3answers
139 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 statem …
1
vote
2answers
255 views

NHibernate, saving IDictionary : TransientObjectException

In my class Case I have an IDictionary with Entity (a class) as key and Roles (an enum) as value. When trying to save a new instance (non-persisted) of Case, where the IDictionary …
1
vote
2answers
261 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" type="M …
1
vote
1answer
93 views

Need to generate a Persistent Transient Failure

Update: A 4.x.x vs a 5.x.x became the least of my worries when I discovered that not all mail servers return errors according to the "standard". I'm opting to handle all types of r …
0
votes
1answer
58 views

NHibernate: set entity from transient object based on unique field

My application obtains transient objects. MyClass Id Name OtherData Mapping is like Id is identifier and Name has unique constraint in database. The transient object has n …
0
votes
3answers
52 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; interna …
0
votes
1answer
69 views

NHibernate ManyToMany relationship - using AuditInterceptor - object references an unsaved transient instance - save the transient instance before flushing

The domain model the DomainObject's audit fields are populated using an AuditInterceptor. DomainObject Id EstablishDate EstablishId UpdateDate UpdateId Message : …
0
votes
3answers
96 views

Hibernate not fetching public member

Consider the following code: @Entity @Table(name = "a") public class A implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name=" …
0
votes
3answers
1k views

Hibernate - Declariing A Transient object in a pojo

I have a pojo that is object A , of table TableA TableA (int a1,int a2). To fill the table I run a query that returns (int a1, int a2, boolean b3) (and runs multiple data checks …