我正在使用jhipster生成的项目。对于实体中的给定字段,值是一个枚举。启用实体过滤后,如何根据枚举值查询实体
api / users?role.equals = admin
无法将类型“ java.lang.String”的属性值转换为属性“ role.equals”的必需类型“ application.domain.enumeration.Roles”;嵌套的异常是org.springframework.core.convert.ConversionFailedException:无法将值[admin]从[java.lang.String]类型转换为[application.domain.enumeration.Roles]类型;嵌套异常是java.lang.IllegalArgumentException:没有枚举常量application.domain.enumeration.Roles.admin
我认为我需要编写自定义规范,但不确定如何进行
用户类型为admin的对象列表
控制器代码:
publishing {
publications {
aar(MavenPublication) {
groupId 'com.sample.project'
artifactId 'SampleProject'
version '1.1.0'
artifact bundleReleaseAar
}
}
}
枚举代码:
package org.XXX.web.rest;
import com.codahale.metrics.annotation.Timed;
import io.github.jhipster.web.util.ResponseUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;
/**
* REST controller for managing Users.
*/
@RestController
@RequestMapping("/api")
public class UsersResource {
private final Logger log = LoggerFactory.getLogger(UsersResource.class);
private static final String ENTITY_NAME = "serviceUsers";
private final UsersService usersService;
private final UsersQueryService usersQueryService;
public UsersResource(UsersService usersService, UsersQueryService usersQueryService) {
this.usersService = usersService;
this.usersQueryService = usersQueryService;
}
/**
* POST /users : Create a new users.
*
* @param usersDTO the usersDTO to create
* @return the ResponseEntity with status 201 (Created) and with body the new usersDTO, or with status 400 (Bad Request) if the users has already an ID
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PostMapping("/users")
@Timed
public ResponseEntity<UsersDTO> createUsers(@Valid @RequestBody UsersDTO usersDTO) throws URISyntaxException {
log.debug("REST request to save Users : {}", usersDTO);
if (usersDTO.getId() != null) {
throw new BadRequestAlertException("A new users cannot already have an ID", ENTITY_NAME, "idexists");
}
UsersDTO result = usersService.save(usersDTO);
return ResponseEntity.created(new URI("/api/users/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* PUT /users : Updates an existing users.
*
* @param usersDTO the usersDTO to update
* @return the ResponseEntity with status 200 (OK) and with body the updated usersDTO,
* or with status 400 (Bad Request) if the usersDTO is not valid,
* or with status 500 (Internal Server Error) if the usersDTO couldn't be updated
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PutMapping("/users")
@Timed
public ResponseEntity<UsersDTO> updateUsers(@Valid @RequestBody UsersDTO usersDTO) throws URISyntaxException {
log.debug("REST request to update Users : {}", usersDTO);
if (usersDTO.getId() == null) {
throw new BadRequestAlertException("Invalid id", ENTITY_NAME, "idnull");
}
UsersDTO result = usersService.save(usersDTO);
return ResponseEntity.ok()
.headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, usersDTO.getId().toString()))
.body(result);
}
/**
* GET /users : get all the users.
*
* @param pageable the pagination information
* @param criteria the criterias which the requested entities should match
* @return the ResponseEntity with status 200 (OK) and the list of users in body
*/
@GetMapping("/users")
@Timed
public ResponseEntity<List<UsersDTO>> getAllUsers(UsersCriteria criteria, Pageable pageable) {
log.debug("REST request to get Users by criteria: {}", criteria);
Page<UsersDTO> page = usersQueryService.findByCriteria(criteria, pageable);
HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders(page, "/api/users");
return new ResponseEntity<>(page.getContent(), headers, HttpStatus.OK);
}
/**
* GET /users/:id : get the "id" users.
*
* @param id the id of the usersDTO to retrieve
* @return the ResponseEntity with status 200 (OK) and with body the usersDTO, or with status 404 (Not Found)
*/
@GetMapping("/users/{id}")
@Timed
public ResponseEntity<UsersDTO> getUsers(@PathVariable Long id) {
log.debug("REST request to get Users : {}", id);
Optional<UsersDTO> usersDTO = usersService.findOne(id);
return ResponseUtil.wrapOrNotFound(usersDTO);
}
/**
* DELETE /users/:id : delete the "id" users.
*
* @param id the id of the usersDTO to delete
* @return the ResponseEntity with status 200 (OK)
*/
@DeleteMapping("/users/{id}")
@Timed
public ResponseEntity<Void> deleteUsers(@PathVariable Long id) {
log.debug("REST request to delete Users : {}", id);
usersService.delete(id);
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
}