《项目经验》url后面不加""

    xiaoxiao2023-10-10  165

    1. 拼接url,  后面不加"/"

    http://localhost:8066/aaf/   错误

    http://localhost:8066/aaf    正确

    2. 查询List 还是Set

        @Query(value = "from Menu m where m.id in ( ?1 )")     Set<Menu> findByMenuIds(Set<String> menuIds);

     

     

    最新回复(0)