需要比较以下格式的日期-yyyy-mm-dd HH:MM:SS
我尝试使用Date.Parse,但是不允许使用Groovy Sandbox,我需要在脚本化管道中进行比较。
No such static method found: staticMethod java.util.Date parse java.lang.String java.lang.String. Administrators can decide whether to approve or reject this signature.
[Pipeline] End of Pipeline
[Office365connector] No webhooks to notify
org.jenkinsci.plugins.scriptsecurity.sandbox.RejectedAccessException: No such static method found: staticMethod java.util.Date parse java.lang.String java.lang.String
at
答案 0 :(得分:1)
您need to approve the Date.parse
,或使用允许的沙盒
new SimpleDateFormat(format).parse(input)