@Produces(MediaType.APPLICATION_JSON + ";charset=UTF-8")
 @Path("/list")
 @GET
 public String list() {
   List<Authority> list = authorityService.list();
   List<SubAuthority> listNew = new ArrayList<SubAuthority>();
   // List<AuthorityPower> authorityPowerList = authorityPowerService.getAuthorityPowerList();
   for (Authority a : list) {
     SubAuthority subAuthority = new SubAuthority();
     String authorityName = a.getName();
     subAuthority.setId(a.getId());
     subAuthority.setName(authorityName);
     subAuthority.setDescription(a.getDescription());
     subAuthority.setStatus(a.getStatus());
     List<String> resourceList = authorityPowerService.getResourcesByAuthorityName(authorityName);
     String resources = "";
     for (String s : resourceList) {
       String s2 = s + ";";
       resources += s2;
       System.out.println(">>>>>>>>" + s);
     }
     System.out.println("<<<<<<<<" + resources);
     String r1;
     if (resources.equals("")) {
       r1 = "";
     } else {
       r1 = resources.substring(0, resources.length() - 1);
     }
     System.out.println(">>>>>>>>" + r1);
     // String r2 = "\'"+r1+"\'";
     /*String resource="";
     int length = authorityPowerList.size();
     for(int i = 0;i<length;i++){
         String authorityName = authorityPowerList.get(i).getAuthorityName();
         if(authorityName.equals(a.getName())){
             String s = "\'"+authorityPowerList.get(i).getPowerResource()+"\'";
             resource +=s ;
         }
     } */
     subAuthority.setResource(r1);
     listNew.add(subAuthority);
   }
   return JsonResultUtils.getObjectResultByStringAsDefault(listNew, JsonResultUtils.Code.SUCCESS);
 }
 @Produces(MediaType.APPLICATION_JSON + ";charset=UTF-8")
 @Path("/update")
 @POST
 public String update(@FormParam("jsonString") String jsonString) {
   SubAuthority subAuthority =
       JsonMapper.buildNonDefaultMapper().fromJson(jsonString, SubAuthority.class);
   long authorityId = subAuthority.getId();
   String authorityName = subAuthority.getName();
   String authorityDescription = subAuthority.getDescription();
   int authorityStatus = subAuthority.getStatus();
   String resource = subAuthority.getResource();
   Authority authority = new Authority();
   authority.setId(authorityId);
   authority.setName(authorityName);
   authority.setDescription(authorityDescription);
   authority.setStatus(authorityStatus);
   int deleted = authorityPowerService.deleteByAuthorityName(authorityName);
   if (deleted >= 0) {
     int result = authorityService.update(authority);
     String[] resourceArray = resource.split(";");
     for (int i = 0; i < resourceArray.length; i++) {
       Long powId = powerService.getIdByResource(resourceArray[i]);
       AuthorityPower authorityPower = new AuthorityPower();
       authorityPower.setAuthorityId(authorityId);
       authorityPower.setPowerId(powId);
       authorityPower.setPowerResource(resourceArray[i]);
       authorityPower.setAuthorityName(authorityName);
       authorityPowerService.add(authorityPower);
     }
     if (result > 0) {
       return JsonResultUtils.getCodeAndMesByStringAsDefault(JsonResultUtils.Code.SUCCESS);
     } else {
       return JsonResultUtils.getCodeAndMesByStringAsDefault(JsonResultUtils.Code.ERROR);
     }
   } else {
     return JsonResultUtils.getCodeAndMesByStringAsDefault(JsonResultUtils.Code.ERROR);
   }
 }