代码提交

This commit is contained in:
ludj
2022-12-05 17:57:36 +08:00
parent 3617b23e72
commit 02b1b05a99
9 changed files with 15 additions and 29 deletions

View File

@@ -18,7 +18,6 @@ import java.util.Map;
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "codeDetail")
public class CodeDetailServiceImpl implements CodeDetailService {
@Override
public JSONObject queryAll(Map form, Pageable pageable) {

View File

@@ -37,7 +37,6 @@ import java.util.Set;
**/
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "data")
public class DataServiceImpl implements DataService {
private final RoleService roleService;

View File

@@ -57,7 +57,6 @@ import java.util.stream.Collectors;
*/
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "dept")
public class DeptServiceImpl implements DeptService {
private final RedisUtils redisUtils;

View File

@@ -45,7 +45,6 @@ import java.util.Map;
*/
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "dict")
public class DictDetailServiceImpl implements DictDetailService {
private final RedisUtils redisUtils;
@@ -144,6 +143,7 @@ public class DictDetailServiceImpl implements DictDetailService {
public void delCaches(DictDto dict) {
redisUtils.del("dict::name:" + dict.getName());
}
@Override
public DictDto findById(Long dict_id) {
WQLObject wo = WQLObject.getWQLObject("sys_dict");

View File

@@ -48,7 +48,6 @@ import java.util.*;
*/
@Service
@RequiredArgsConstructor
//@CacheConfig(cacheNames = "dict")
public class DictServiceImpl implements DictService {
private final RedisUtils redisUtils;

View File

@@ -29,7 +29,6 @@ import java.util.stream.Collectors;
*/
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "menu")
public class MenuServiceImpl implements MenuService {

View File

@@ -16,7 +16,6 @@
package org.nl.modules.system.service.impl;
import cn.dev33.satoken.stp.StpUtil;
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
@@ -24,14 +23,8 @@ import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import lombok.RequiredArgsConstructor;
import org.nl.modules.common.exception.BadRequestException;
import org.nl.modules.common.utils.CacheKey;
import org.nl.modules.common.utils.RedisUtils;
import org.nl.modules.common.utils.SecurityUtils;
import org.nl.modules.system.domain.Role;
import org.nl.modules.system.domain.User;
import org.nl.modules.system.service.RoleService;
import org.nl.modules.system.service.dto.RoleDto;
import org.nl.modules.system.service.dto.RoleSmallDto;
import org.nl.modules.wql.WQL;
import org.nl.modules.wql.core.bean.ResultBean;
import org.nl.modules.wql.core.bean.WQLObject;
@@ -41,9 +34,9 @@ import org.springframework.cache.annotation.CacheConfig;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.transaction.support.TransactionTemplate;
import java.util.*;
import java.util.stream.Collectors;
/**
* @author ludj
@@ -51,11 +44,8 @@ import java.util.stream.Collectors;
*/
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "role")
public class RoleServiceImpl implements RoleService {
private final RedisUtils redisUtils;
@Override
public JSONObject queryAll(Map whereJson, Pageable page) {
WQLObject wo = WQLObject.getWQLObject("sys_role");
@@ -94,7 +84,6 @@ public class RoleServiceImpl implements RoleService {
form.put("update_name", SecurityUtils.getCurrentNickName());
form.put("update_time", DateUtil.now());
roleTab.insert(form);
}
@Override

View File

@@ -61,7 +61,6 @@ import java.util.stream.Collectors;
*/
@Service
@RequiredArgsConstructor
@CacheConfig(cacheNames = "user")
public class UserServiceImpl implements UserService {
private final FileProperties properties;

View File

@@ -4,6 +4,8 @@ import cn.hutool.db.Db;
import lombok.extern.slf4j.Slf4j;
import org.nl.modules.wql.WQLCore;
import org.nl.modules.wql.util.SpringContextHolder;
import org.springframework.jdbc.datasource.DataSourceUtils;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
@@ -78,8 +80,8 @@ public class DBPoolSpring {
Connection conn = null;
try {
DataSource dataSource = SpringContextHolder.getBean(name);
conn=Db.use(dataSource).getConnection();
// conn = DataSourceUtils.getConnection(dataSource);
// conn=Db.use(dataSource).getConnection();
conn = DataSourceUtils.getConnection(dataSource);
} catch (Exception e) {
log.error("不能获得Spring连接池中的数据库连接:" + e.toString());
}
@@ -120,9 +122,10 @@ public class DBPoolSpring {
// conn.close();
// }
DataSource dataSource = (DataSource) SpringContextHolder.getBean(name);
// DataSourceUtils.releaseConnection(conn, dataSource);
DataSourceUtils.releaseConnection(conn, dataSource);
Db.use(dataSource).closeConnection(conn);
/* Db.use(dataSource).closeConnection(conn);*/
// } catch (SQLException e) {
// log.error("数据库连接关闭:"+e.toString() );
// }