公告板
版本库
filestore
活动
搜索
登录
data2
/
fastface
基于中科视拓的seetaface6封装的免费人脸识别项目后端接口
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
降低识别精度,增加速度
shentao
2025-09-22
6474cdddb5933d64efdf0207614be2596a7a3600
[data2/fastface.git]
/
code
/
src
/
main
/
java
/
com
/
code2roc
/
fastface
/
db
/
MasterJdbcTemplate.java
1
2
3
4
5
6
7
8
9
10
11
package com.code2roc.fastface.db;
import org.springframework.jdbc.core.JdbcTemplate;
import javax.sql.DataSource;
public class MasterJdbcTemplate extends JdbcTemplate {
public MasterJdbcTemplate(DataSource dataSource) {
super(dataSource);
}
}