Merge branch 'master' into develop

This commit is contained in:
2024-07-23 09:42:04 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,12 +1,13 @@
package it.integry.annotations; package it.integry.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;
import java.lang.annotation.Target; import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME; import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Retention(RUNTIME) @Retention(RUNTIME)
@Target(FIELD) @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
public @interface PostContextAutowired { public @interface PostContextAutowired {
} }

View File

@@ -271,7 +271,7 @@ public class MigrationComponent {
"La migrazione " + migrationCode + " non è andata a buon fine sul DB " + advancedDataSource.getProfileName() + ". Controllare il log per ulteriori dettagli.", "La migrazione " + migrationCode + " non è andata a buon fine sul DB " + advancedDataSource.getProfileName() + ". Controllare il log per ulteriori dettagli.",
e, new Date()); e, new Date());
} catch (Exception ex) { } catch (Exception ex) {
logger.error("MigrationService - Mail", e); logger.error("MigrationService - Mail", ex);
} }
} }