About 51 results
Open links in new tab
  1. Why does Java have transient fields? - Stack Overflow

    May 26, 2009 · The transient keyword in Java is used to indicate that a field should not be part of the serialization (which means saved, like to a file) process. From the Java Language Specification, Java …

  2. java - What are Transient and Volatile Modifiers? - Stack Overflow

    Aug 23, 2010 · The volatile and transient modifiers can be applied to fields of classes 1 irrespective of field type. Apart from that, they are unrelated. The transient modifier tells the Java object serialization …

  3. What does the keyword "transient" mean in Java? [duplicate]

    What does the keyword "transient" mean in Java? [duplicate] Asked 14 years, 11 months ago Modified 2 years, 8 months ago Viewed 199k times

  4. Why use the `transient` keyword in java? - Stack Overflow

    I have an issue related to the transient keyword's use before the private modifier in java . variable declaration: transient private ResourceBundle pageResourceBundle; My class looks like this :

  5. java - Why does JPA have a @Transient annotation? - Stack Overflow

    Jan 28, 2010 · Java has the transient keyword. Why does JPA have @Transient instead of simply using the already existing java keyword?

  6. java - Serializable and transient - Stack Overflow

    Dec 10, 2014 · Just because you have to compromise on one thing ("transient" in this case) doesn't mean you automatically turn everything else into a keyword too. Serializable is a marker interface. …

  7. java - what is the use of transient keyword and when to use it? - Stack ...

    Possible Duplicate: what does the keyword “transient” means in java? I read about transient keyword in java. What I understood is?. It was used for fields. If we declare transient keyword that ...

  8. What does @Transient annotation mean for methods?

    Jan 31, 2014 · So I have learned that the transient keyword in Java means that an entity does not persist, and that the @Transient annotation in JPA means don't persist a field to the database. But …

  9. What is the C# Equivalent of java's transient keyword?

    What is the C# Equivalent of java's transient keyword? [duplicate] Asked 10 years, 8 months ago Modified 10 years, 8 months ago Viewed 12k times

  10. java - @JsonIgnore vs @Transient -difference? - Stack Overflow

    Apr 21, 2015 · 3 @Transient is an allegory to transient keyword in Java language. When used with a variable, it is never serialized. Example: