50dfe5b4e812001e1c109cf6c0702dd1
来自「主要包括有消息的发布、删除、查看消息、查看消息内容、还有一些用户的注册、登录等采」· 代码 · 共 18 行
TXT
18 行
package com.model;
import org.hibernate.cfg.*;
import org.hibernate.tool.hbm2ddl.SchemaExport;
public class ExportDB {
/**
* @param args
*/
public static void main(String[] args) {
Configuration cfg = new Configuration().configure();
SchemaExport se = new SchemaExport(cfg);
se.create(true, true);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?