mirror of https://github.com/elunez/eladmin
代码生成器优化,生成代码更加便捷
parent
203c1d692c
commit
6b4411a5ed
|
@ -1,51 +0,0 @@
|
|||
package me.zhengjie.gen.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import cn.hutool.core.bean.BeanUtil;
|
||||
import cn.hutool.core.bean.copier.CopyOptions;
|
||||
import javax.persistence.*;
|
||||
import javax.validation.constraints.*;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import org.hibernate.annotations.*;
|
||||
import java.sql.Timestamp;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
@Entity
|
||||
@Data
|
||||
@Table(name="gen_test")
|
||||
public class GenTest implements Serializable {
|
||||
|
||||
/** ID */
|
||||
@Id
|
||||
@Column(name = "id")
|
||||
private Long id;
|
||||
|
||||
/** 名称 */
|
||||
@Column(name = "name",nullable = false)
|
||||
@NotBlank
|
||||
private String name;
|
||||
|
||||
/** 状态 */
|
||||
@Column(name = "status",nullable = false)
|
||||
@NotNull
|
||||
private Boolean status;
|
||||
|
||||
/** 日期 */
|
||||
@Column(name = "date",nullable = false)
|
||||
@NotNull
|
||||
private Timestamp date;
|
||||
|
||||
/** 创建日期 */
|
||||
@Column(name = "create_time")
|
||||
@CreationTimestamp
|
||||
private Timestamp createTime;
|
||||
|
||||
public void copy(GenTest source){
|
||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||
}
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
package me.zhengjie.gen.repository;
|
||||
|
||||
import me.zhengjie.gen.domain.GenTest;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
public interface GenTestRepository extends JpaRepository<GenTest, Long>, JpaSpecificationExecutor<GenTest> {
|
||||
}
|
|
@ -1,82 +0,0 @@
|
|||
package me.zhengjie.gen.rest;
|
||||
|
||||
import me.zhengjie.aop.log.Log;
|
||||
import me.zhengjie.gen.domain.GenTest;
|
||||
import me.zhengjie.gen.service.GenTestService;
|
||||
import me.zhengjie.gen.service.dto.GenTestQueryCriteria;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import io.swagger.annotations.*;
|
||||
import java.io.IOException;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
@Api(tags = "测试生成管理")
|
||||
@RestController
|
||||
@RequestMapping("/api/genTest")
|
||||
public class GenTestController {
|
||||
|
||||
private final GenTestService genTestService;
|
||||
|
||||
public GenTestController(GenTestService genTestService) {
|
||||
this.genTestService = genTestService;
|
||||
}
|
||||
|
||||
@Log("导出数据")
|
||||
@ApiOperation("导出数据")
|
||||
@GetMapping(value = "/download")
|
||||
@PreAuthorize("@el.check('genTest:list')")
|
||||
public void download(HttpServletResponse response, GenTestQueryCriteria criteria) throws IOException {
|
||||
genTestService.download(genTestService.queryAll(criteria), response);
|
||||
}
|
||||
|
||||
@GetMapping
|
||||
@Log("查询测试生成")
|
||||
@ApiOperation("查询测试生成")
|
||||
@PreAuthorize("@el.check('genTest:list')")
|
||||
public ResponseEntity getGenTests(GenTestQueryCriteria criteria, Pageable pageable){
|
||||
return new ResponseEntity<>(genTestService.queryAll(criteria,pageable),HttpStatus.OK);
|
||||
}
|
||||
|
||||
@PostMapping
|
||||
@Log("新增测试生成")
|
||||
@ApiOperation("新增测试生成")
|
||||
@PreAuthorize("@el.check('genTest:add')")
|
||||
public ResponseEntity create(@Validated @RequestBody GenTest resources){
|
||||
return new ResponseEntity<>(genTestService.create(resources),HttpStatus.CREATED);
|
||||
}
|
||||
|
||||
@PutMapping
|
||||
@Log("修改测试生成")
|
||||
@ApiOperation("修改测试生成")
|
||||
@PreAuthorize("@el.check('genTest:edit')")
|
||||
public ResponseEntity update(@Validated @RequestBody GenTest resources){
|
||||
genTestService.update(resources);
|
||||
return new ResponseEntity(HttpStatus.NO_CONTENT);
|
||||
}
|
||||
|
||||
@DeleteMapping(value = "/{id}")
|
||||
@Log("删除测试生成")
|
||||
@ApiOperation("删除测试生成")
|
||||
@PreAuthorize("@el.check('genTest:del')")
|
||||
public ResponseEntity delete(@PathVariable Long id){
|
||||
genTestService.delete(id);
|
||||
return new ResponseEntity(HttpStatus.OK);
|
||||
}
|
||||
|
||||
@Log("多选删除测试生成")
|
||||
@ApiOperation("多选删除测试生成")
|
||||
@PreAuthorize("@el.check('genTest:del')")
|
||||
@DeleteMapping
|
||||
public ResponseEntity deleteAll(@RequestBody Long[] ids) {
|
||||
genTestService.deleteAll(ids);
|
||||
return new ResponseEntity(HttpStatus.OK);
|
||||
}
|
||||
}
|
|
@ -1,72 +0,0 @@
|
|||
package me.zhengjie.gen.service;
|
||||
|
||||
import me.zhengjie.gen.domain.GenTest;
|
||||
import me.zhengjie.gen.service.dto.GenTestDto;
|
||||
import me.zhengjie.gen.service.dto.GenTestQueryCriteria;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import java.util.Map;
|
||||
import java.util.List;
|
||||
import java.io.IOException;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
public interface GenTestService {
|
||||
|
||||
/**
|
||||
* 查询数据分页
|
||||
* @param criteria 条件
|
||||
* @param pageable 分页参数
|
||||
* @return Map<String,Object>
|
||||
*/
|
||||
Map<String,Object> queryAll(GenTestQueryCriteria criteria, Pageable pageable);
|
||||
|
||||
/**
|
||||
* 查询所有数据不分页
|
||||
* @param criteria 条件参数
|
||||
* @return List<GenTestDto>
|
||||
*/
|
||||
List<GenTestDto> queryAll(GenTestQueryCriteria criteria);
|
||||
|
||||
/**
|
||||
* 根据ID查询
|
||||
* @param id ID
|
||||
* @return GenTestDto
|
||||
*/
|
||||
GenTestDto findById(Long id);
|
||||
|
||||
/**
|
||||
* 创建
|
||||
* @param resources /
|
||||
* @return GenTestDto
|
||||
*/
|
||||
GenTestDto create(GenTest resources);
|
||||
|
||||
/**
|
||||
* 编辑
|
||||
* @param resources /
|
||||
*/
|
||||
void update(GenTest resources);
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @param id /
|
||||
*/
|
||||
void delete(Long id);
|
||||
|
||||
/**
|
||||
* 多选删除
|
||||
* @param ids /
|
||||
*/
|
||||
void deleteAll(Long[] ids);
|
||||
|
||||
/**
|
||||
* 导出数据
|
||||
* @param all 待导出的数据
|
||||
* @param response /
|
||||
* @throws IOException /
|
||||
*/
|
||||
void download(List<GenTestDto> all, HttpServletResponse response) throws IOException;
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
package me.zhengjie.gen.service.dto;
|
||||
|
||||
import lombok.Data;
|
||||
import java.sql.Timestamp;
|
||||
import java.io.Serializable;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
@Data
|
||||
public class GenTestDto implements Serializable {
|
||||
|
||||
/** ID */
|
||||
/** 防止精度丢失 */
|
||||
@JsonSerialize(using= ToStringSerializer.class)
|
||||
private Long id;
|
||||
|
||||
/** 名称 */
|
||||
private String name;
|
||||
|
||||
/** 状态 */
|
||||
private Boolean status;
|
||||
|
||||
/** 日期 */
|
||||
private Timestamp date;
|
||||
|
||||
/** 创建日期 */
|
||||
private Timestamp createTime;
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
package me.zhengjie.gen.service.dto;
|
||||
|
||||
import lombok.Data;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.List;
|
||||
import me.zhengjie.annotation.Query;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
@Data
|
||||
public class GenTestQueryCriteria{
|
||||
|
||||
/** 模糊 */
|
||||
@Query(type = Query.Type.INNER_LIKE)
|
||||
private String name;
|
||||
|
||||
/** 精确 */
|
||||
@Query
|
||||
private Boolean status;
|
||||
/** BETWEEN */
|
||||
@Query(type = Query.Type.BETWEEN)
|
||||
private List<Timestamp> createTime;
|
||||
}
|
|
@ -1,116 +0,0 @@
|
|||
package me.zhengjie.gen.service.impl;
|
||||
|
||||
import me.zhengjie.gen.domain.GenTest;
|
||||
import me.zhengjie.utils.ValidationUtil;
|
||||
import me.zhengjie.utils.FileUtil;
|
||||
import me.zhengjie.gen.repository.GenTestRepository;
|
||||
import me.zhengjie.gen.service.GenTestService;
|
||||
import me.zhengjie.gen.service.dto.GenTestDto;
|
||||
import me.zhengjie.gen.service.dto.GenTestQueryCriteria;
|
||||
import me.zhengjie.gen.service.mapper.GenTestMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Propagation;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import cn.hutool.core.lang.Snowflake;
|
||||
import cn.hutool.core.util.IdUtil;
|
||||
import org.springframework.cache.annotation.CacheConfig;
|
||||
import org.springframework.cache.annotation.CacheEvict;
|
||||
import org.springframework.cache.annotation.Cacheable;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import me.zhengjie.utils.PageUtil;
|
||||
import me.zhengjie.utils.QueryHelp;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.io.IOException;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.ArrayList;
|
||||
import java.util.LinkedHashMap;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
@Service
|
||||
@CacheConfig(cacheNames = "genTest")
|
||||
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true, rollbackFor = Exception.class)
|
||||
public class GenTestServiceImpl implements GenTestService {
|
||||
|
||||
private final GenTestRepository genTestRepository;
|
||||
|
||||
private final GenTestMapper genTestMapper;
|
||||
|
||||
public GenTestServiceImpl(GenTestRepository genTestRepository, GenTestMapper genTestMapper) {
|
||||
this.genTestRepository = genTestRepository;
|
||||
this.genTestMapper = genTestMapper;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Cacheable
|
||||
public Map<String,Object> queryAll(GenTestQueryCriteria criteria, Pageable pageable){
|
||||
Page<GenTest> page = genTestRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder),pageable);
|
||||
return PageUtil.toPage(page.map(genTestMapper::toDto));
|
||||
}
|
||||
|
||||
@Override
|
||||
@Cacheable
|
||||
public List<GenTestDto> queryAll(GenTestQueryCriteria criteria){
|
||||
return genTestMapper.toDto(genTestRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder)));
|
||||
}
|
||||
|
||||
@Override
|
||||
@Cacheable(key = "#p0")
|
||||
public GenTestDto findById(Long id) {
|
||||
GenTest genTest = genTestRepository.findById(id).orElseGet(GenTest::new);
|
||||
ValidationUtil.isNull(genTest.getId(),"GenTest","id",id);
|
||||
return genTestMapper.toDto(genTest);
|
||||
}
|
||||
|
||||
@Override
|
||||
@CacheEvict(allEntries = true)
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public GenTestDto create(GenTest resources) {
|
||||
Snowflake snowflake = IdUtil.createSnowflake(1, 1);
|
||||
resources.setId(snowflake.nextId());
|
||||
return genTestMapper.toDto(genTestRepository.save(resources));
|
||||
}
|
||||
|
||||
@Override
|
||||
@CacheEvict(allEntries = true)
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public void update(GenTest resources) {
|
||||
GenTest genTest = genTestRepository.findById(resources.getId()).orElseGet(GenTest::new);
|
||||
ValidationUtil.isNull( genTest.getId(),"GenTest","id",resources.getId());
|
||||
genTest.copy(resources);
|
||||
genTestRepository.save(genTest);
|
||||
}
|
||||
|
||||
@Override
|
||||
@CacheEvict(allEntries = true)
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public void delete(Long id) {
|
||||
genTestRepository.deleteById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
@CacheEvict(allEntries = true)
|
||||
public void deleteAll(Long[] ids) {
|
||||
for (Long id : ids) {
|
||||
genTestRepository.deleteById(id);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void download(List<GenTestDto> all, HttpServletResponse response) throws IOException {
|
||||
List<Map<String, Object>> list = new ArrayList<>();
|
||||
for (GenTestDto genTest : all) {
|
||||
Map<String,Object> map = new LinkedHashMap<>();
|
||||
map.put("名称", genTest.getName());
|
||||
map.put("状态", genTest.getStatus());
|
||||
map.put("日期", genTest.getDate());
|
||||
map.put("创建日期", genTest.getCreateTime());
|
||||
list.add(map);
|
||||
}
|
||||
FileUtil.downloadExcel(list, response);
|
||||
}
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
package me.zhengjie.gen.service.mapper;
|
||||
|
||||
import me.zhengjie.base.BaseMapper;
|
||||
import me.zhengjie.gen.domain.GenTest;
|
||||
import me.zhengjie.gen.service.dto.GenTestDto;
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.ReportingPolicy;
|
||||
|
||||
/**
|
||||
* @author Zheng Jie
|
||||
* @date 2019-11-25
|
||||
*/
|
||||
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE)
|
||||
public interface GenTestMapper extends BaseMapper<GenTestDto, GenTest> {
|
||||
|
||||
}
|
Loading…
Reference in New Issue