About 51 results
Open links in new tab
  1. Why does JPA have a @Transient annotation? - Stack Overflow

    Jan 28, 2010 · The transient keyword is a stronger condition than @Transient: If a field uses the transient keyword, that field will not be serialized when the object is converted to a byte stream. …

  2. 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

  3. 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 :

  4. java - Qual a diferença entre o uso de @Transient e transient em um ...

    Feb 27, 2020 · @Transient é uma anotação do JPA e está relacionada diretamente com persistência de dados. Campos marcados com esta anotação não serão considerados em inserts, updates...

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

    Apr 21, 2015 · Which one to use for skipping field for serialization and de-serialization. @JsonIgnore why we should use it if @Transient also skips the field from serialization and de-serialization process?

  6. 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 …

  7. java - Serializable and transient - Stack Overflow

    Dec 10, 2014 · The transient keyword can be used to specify that an attribute does not need to be serialised, for instance because it is a derived attribute. See also this reply to a similar question on …

  8. Snowflake transient to permanent table - Stack Overflow

    Aug 24, 2022 · I have a scenario wherein I have to convert transient snowflake table to permanent table and also have same grants and data share. Is there any way to do it?

  9. How to implement Keyed Transient Dependency Injection in C# using ...

    Dec 22, 2023 · From the docs: Transient Transient lifetime services are created each time they're requested from the service container. This lifetime works best for lightweight, stateless services. …

  10. How to implement the retry pattern when processing a message from …

    Sep 1, 2023 · When a transient failure occurs, you can just finish the processing without completing or explicitly abandoning the message. Azure will remove the lock and make the message available …