2022-04-25 18:11

2021-12-16 12:18

2021-03-19 20:46

jqgride和layui-table了解一下?

2020-05-28 08:36

巧了,咱俩是不是撞前台了?http://www.dogu.site:6060/

2020-03-20 17:24

这个就可以动态的在controller中创建,创建完之后在其他地方用就可以了。支持同种数据库和不同种数据库同连接

2020-02-26 19:43

@dogu 获取的时候使用:DbKit.getConfig("NEW_DB_KEY");或者是Db.use("NEW_DB_KEY");即可

2020-02-26 19:41

以Mysql为例:

String url = "jdbc:mysql://localhost:3306/dogu?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8";
String username = "root";
String password = "root";
String drive = "com.mysql.cj.jdbc.Driver";
Map map = new HashMap<>();
map.put(DruidDataSourceFactory.PROP_DRIVERCLASSNAME, drive);
map.put(DruidDataSourceFactory.PROP_URL, url);
map.put(DruidDataSourceFactory.PROP_USERNAME, username);
map.put(DruidDataSourceFactory.PROP_PASSWORD, password);

Dialect dialect = new MysqlDialect();
boolean showSql = true;
boolean devMode = false;
int transactionLevel = 0;
ICache cache = new EhCache();
Config config = new Config("NEW_DB_KEY", DruidDataSourceFactory.createDataSource(map), dialect, showSql, devMode, transactionLevel, IContainerFactory.defaultContainerFactory, cache);
DbKit.addConfig(config);

2018-12-28 16:05

@JFinal 波总,不只是UI,关键是做的权限控制,系统设置里面才是精华。

2018-12-22 08:43

中文放到国外网站就不干活了

2018-12-21 13:12

@简单简单 可以用itext来生成pdf,很好用的第三方封装组件

2018-12-21 12:49

@简单简单 这是pdfjs插件使用的例子,如果有需求,可以考虑增加上生成的例子,然后使用pdfjs展示。

2017-04-08 11:30

@JFinal 谢谢波总,找到问题了:用ajaxflieupload上传文件的时候加上:type : "post",就可以了,但是还有一点不明白:为啥tomcat就没这种问题QAQ