spring cloud使用随记

1.实体类接收List<对象>,controller接受不到数据

 前端数据

{
   ...
  "ohOpcohrses": [
    {

      "ct": 8,
      "dpw": 5,
      "fkTOhCoh": 7
    },
    {

      "ct": 7,
      "dpw": 5,
      "fkTOhCoh": 8
    }
  ],
...
}
public class TOhOp extends BaseEntity
{
    private static final long serialVersionUID = 1L;


    private List<TOhOpcohrs> ohOpcohrses;


}

 实体类TOhOp中的ohOpcohrses属性名,开头字母要小写,否则无法接收到前端数据。

2.String[]转List<Long>

List<Long> ohSources = Arrays.stream(tOhOp.getOhSource().split(","))
                .map(s -> Long.parseLong(s.trim())).collect(Collectors.toList());

3. List<Long>转字符串

实体类属性
private List<Long> ohSources;


tOhOp.getOhSources().stream().map(s -> s+"").collect(Collectors.joining(","));

3.List<对象>转 long[]

List<SysRole> sysRoleList = user.getRoles();
Long [] roleidArray = sysRoleList.stream().map(SysRole::getRoleId).toArray(Long[] :: new);

3.xxxMapper.xml文件接收数组,collection写法

<update id="updateOhOpByBatchForDel" parameterType="Long">
        update t_oh_op set del_flag = 1
        where pk_t_oh_op in
        <foreach item="pkTOhOp" collection="array" separator="," open="(" close=")">
            #{pkTOhOp}
        </foreach>
</update>

item的名跟#{pkTOhOp}对应, parameterType="Long" 与传递过来的数组类型一致,collection="array"。

报错

 Result Maps collection does not contain value for java.util.HashMap

<select id="selectOnNotiById" parameterType="Long" resultMap="java.util.HashMap">

resultMap改为resultType

4.AjaxResult转对象

public class AjaxResult extends HashMap<String, Object>
{
    private static final long serialVersionUID = 1L;

    /** 状态码 */
    public static final String CODE_TAG = "code";

    /** 返回内容 */
    public static final String MSG_TAG = "msg";

    /** 数据对象 */
    public static final String DATA_TAG = "data";

    /**
     * 初始化一个新创建的 AjaxResult 对象,使其表示一个空消息。
     */
    public AjaxResult()
    {
    }

    /**
     * 初始化一个新创建的 AjaxResult 对象
     *
     * @param code 状态码
     * @param msg 返回内容
     */
    public AjaxResult(int code, String msg)
    {
        super.put(CODE_TAG, code);
        super.put(MSG_TAG, msg);
    }

    /**
     * 初始化一个新创建的 AjaxResult 对象
     *
     * @param code 状态码
     * @param msg 返回内容
     * @param data 数据对象
     */
    public AjaxResult(int code, String msg, Object data)
    {
        super.put(CODE_TAG, code);
        super.put(MSG_TAG, msg);
        if (StringUtils.isNotNull(data))
        {
            super.put(DATA_TAG, data);
        }
    }

    /**
     * 方便链式调用
     *
     * @param key
     * @param value
     * @return
     */
    @Override
    public AjaxResult put(String key, Object value)
    {
        super.put(key, value);
        return this;
    }

    /**
     * 返回成功消息
     *
     * @return 成功消息
     */
    public static AjaxResult success()
    {
        return AjaxResult.success("操作成功");
    }

    /**
     * 返回成功数据
     *
     * @return 成功消息
     */


    public static AjaxResult success(Object data)
    {
        return AjaxResult.success("操作成功", data);
    }

    /**
     * 返回成功消息
     *
     * @param msg 返回内容
     * @return 成功消息
     */
    public static AjaxResult success(String msg)
    {
        return AjaxResult.success(msg, null);
    }

    /**
     * 返回成功消息
     *
     * @param msg 返回内容
     * @param data 数据对象
     * @return 成功消息
     */
    public static AjaxResult success(String msg, Object data)
    {
        return new AjaxResult(HttpStatus.SUCCESS, msg, data);
    }

    /**
     * 返回错误消息
     *
     * @return
     */
    public static AjaxResult error()
    {
        return AjaxResult.error("操作失败");
    }

    /**
     * 返回错误消息
     *
     * @param msg 返回内容
     * @return 警告消息
     */
    public static AjaxResult error(String msg)
    {
        return AjaxResult.error(msg, null);
    }

    /**
     * 返回错误消息
     *
     * @param msg 返回内容
     * @param data 数据对象
     * @return 警告消息
     */
    public static AjaxResult error(String msg, Object data)
    {
        return new AjaxResult(HttpStatus.ERROR, msg, data);
    }

    /**
     * 返回错误消息
     *
     * @param code 状态码
     * @param msg 返回内容
     * @return 警告消息
     */
    public static AjaxResult error(int code, String msg)
    {
        return new AjaxResult(code, msg, null);
    }
}

TDefault allowtDefault = JSON.parseObject(JSON.toJSONString(jsonObject1.get("data")), TDefault.class);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

艺菲

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值