Skip to content

Commit

Permalink
准备升级1.10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
erupts committed Sep 4, 2022
1 parent af3c2e7 commit dc78039
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package xyz.erupt.jpa.support;

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.hibernate.boot.Metadata;
import org.hibernate.engine.spi.SessionFactoryImplementor;
Expand All @@ -25,6 +26,7 @@
* @author YuePeng
* date 2022/8/3 21:42
*/
@Slf4j
public class CommentIntegrator implements Integrator {

/**
Expand Down Expand Up @@ -105,6 +107,8 @@ private void fieldComment(PersistentClass persistentClass, String columnName) {
}
}
} catch (SecurityException ignored) {
} catch (Exception e) {
log.warn(e.getMessage());
}
}

Expand Down

0 comments on commit dc78039

Please sign in to comment.