Weblogic Deployment Exception : PaddingException: Could not perform unpadding: invalid pad byte

前端 未结 3 472
梦谈多话
梦谈多话 2021-02-05 18:34

This question is asked (and answered) just to share some knowledge with the SO Community.

I have recently came up with a deployment Exception of my web application (afte

3条回答
  •  梦谈多话
    2021-02-05 19:00

    Googling to find an answer was not very helpful. After examining the files received from my SVN repository, i noticed that a jdbc application resource was changed.

    Examining the jdbc resource more closely i found that it was using the password-encrypted property which is used only for production environments

    {AES}some+very+long+encrypted+string
    

    So I commented out this property and used the property used for the development environment:

     
         
            user
            MY_USER
         
         
            password
            MY_PASS_IN_PLAIN_TEXT
         
      
    

    And that worked just fine.

提交回复
热议问题