Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. fillermark_5157
    F
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    fillermark_5157

    @fillermark_5157

    0
    Reputation
    1
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    fillermark_5157 Follow

    Best posts made by fillermark_5157

    This user hasn't posted anything yet.

    Latest posts made by fillermark_5157

    • RE: Proget Jenkins Plugin: Not working on Slaves?

      Alex-Hempel said in Proget Jenkins Plugin: Not working on Slaves?:

      Caused by: java.io.NotSerializableException: com.inedo.proget.jenkins.DownloadPackageBuilder

      java.io.NotSerializableException can occur when you serialize an inner class instance because serializing such an inner class instance will result in serialization of its associated outer class instance as well. How to solve it?

      • If the class is yours, make the class serializable by implementing the interface java.io.Serializable.

      • All non primitive members implement Serializable (or are transient instead)

      • If your class is an inner class it's either static or the outer class implements Serializable

      • If the class is 3rd party, but you don't need it in the serialized form, mark the field as transient

      It is important to note that Serialization of inner classes (i.e., nested classes that are not static member classes), including local and anonymous classes, is strongly discouraged.

      posted in Support
      F
      fillermark_5157