MyBatisGenerator 사용자 정의 플러그인 만들기
필요조건
설치 방법
org.mubatis.generator.api.extends를 통해 PluginAdapter를 다시 쓰는 데 필요한 방법입니다.
기본 참조공식 문서만 있으면 됩니다.
이번에는Enity가 생성된 후에 특정 인터페이스를 설치하면 됩니다. 그래서mode lBase RecordClassGenerated 방법으로 다시 썼습니다.
public boolean modelBaseRecordClassGenerated(TopLevelClass topLevelClass, IntrospectedTable introspectedTable) {
topLevelClass.addImportedType(entitySuperInterface);
topLevelClass.addSuperInterface(entitySuperInterface);
return true;
}
Reference
이 문제에 관하여(MyBatisGenerator 사용자 정의 플러그인 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/sekken/articles/61928058b204605762ef텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)