feat():sqlserver数据库连接

master
jiyufei 2 months ago
parent 67ed7b35b2
commit ab0d73badd

@ -59,6 +59,7 @@ spring:
statementPrepareAfterLogEnabled: false
statementPrepareCallAfterLogEnabled: false
statementParameterSetLogEnabled: false
validation-query: SELECT 1
datasource:
master:
url: jdbc:mysql://${spring.datasource.host}:${spring.datasource.port}/${spring.datasource.dbname}?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowMultiQueries=true&serverTimezone=UTC
@ -70,6 +71,11 @@ spring:
username: ${spring.datasource.username}
password: ${spring.datasource.password}
driver-class-name: com.mysql.cj.jdbc.Driver
slave_2:
url: jdbc:sqlserver://localhost:1433;DatabaseName=UFDATA_888_2018;trustServerCertificate=true
username: sa
password: '123456'
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
# ===================== Redis配置 =====================
# redis单机模式

@ -32,4 +32,5 @@ public interface YysSupplierInformationService extends IService<YysSupplierInfor
void saveOrUpdate(YysSupplierInformationForm yysSupplierInformationForm,String id, boolean isSave) throws Exception;
List<Map<String, Object>> test();
}

@ -1,5 +1,6 @@
package jnpf.service.impl;
import com.baomidou.dynamic.datasource.annotation.DS;
import jnpf.entity.*;
import jnpf.mapper.YysSupplierInformationMapper;
import jnpf.service.*;
@ -18,6 +19,7 @@ import java.util.regex.Pattern;
import jnpf.model.QueryModel;
import java.util.stream.Collectors;
import jnpf.base.model.ColumnDataModel;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import jnpf.database.model.superQuery.SuperJsonModel;
@ -46,6 +48,9 @@ public class YysSupplierInformationServiceImpl extends ServiceImpl<YysSupplierIn
@Autowired
private UserProvider userProvider;
@Autowired
private JdbcTemplate jdbcTemplate;
@Override
public List<YysSupplierInformationEntity> getList(YysSupplierInformationPagination yysSupplierInformationPagination){
return getTypeList(yysSupplierInformationPagination,yysSupplierInformationPagination.getDataType());
@ -284,4 +289,11 @@ public class YysSupplierInformationServiceImpl extends ServiceImpl<YysSupplierIn
this.saveOrUpdate(entity);
}
@Override
@DS("slave_2")
public List<Map<String, Object>> test() {
String sql = "select * from dbo.Vendor";
return jdbcTemplate.queryForList(sql);
}
}

@ -15,22 +15,27 @@ import jnpf.model.yyssupplierinformation.*;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.util.*;
import jnpf.annotation.JnpfField;
import jnpf.base.vo.PageListVO;
import jnpf.base.vo.PaginationVO;
import jnpf.base.vo.DownloadVO;
import jnpf.config.ConfigValueUtil;
import jnpf.base.entity.ProvinceEntity;
import java.io.IOException;
import java.util.stream.Collectors;
import jnpf.engine.entity.FlowTaskEntity;
import jnpf.exception.WorkFlowException;
import org.springframework.transaction.annotation.Transactional;
/**
* yysSupplierInformation
*
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
@ -52,7 +57,6 @@ public class YysSupplierInformationController {
private YysSupplierInformationService yysSupplierInformationService;
/**
*
*
@ -81,6 +85,7 @@ public class YysSupplierInformationController {
vo.setPagination(page);
return ActionResult.success(vo);
}
/**
*
*
@ -101,8 +106,10 @@ public class YysSupplierInformationController {
}
return ActionResult.success("创建成功");
}
/**
*
*
* @param id
* @param yysSupplierInformationForm
* @return
@ -130,8 +137,10 @@ public class YysSupplierInformationController {
return ActionResult.fail("更新失败,数据不存在");
}
}
/**
*
*
* @param id
* @return
*/
@ -146,9 +155,11 @@ public class YysSupplierInformationController {
}
return ActionResult.success("删除成功");
}
/**
* ()
* 使-
*
* @param id
* @return
*/
@ -166,9 +177,11 @@ public class YysSupplierInformationController {
yysSupplierInformationMap = generaterSwapUtil.swapDataDetail(yysSupplierInformationMap, YysSupplierInformationConstant.getFormData(), "591239930433244933", false);
return ActionResult.success(yysSupplierInformationMap);
}
/**
* ()
* 使-
*
* @param id
* @return
*/
@ -187,4 +200,10 @@ public class YysSupplierInformationController {
return ActionResult.success(yysSupplierInformationMap);
}
@Operation(summary = "测试连接sqlserver数据库返回数据")
@GetMapping("/test")
public ActionResult test() {
return ActionResult.success(yysSupplierInformationService.test());
}
}

Loading…
Cancel
Save