我有一段代码
@Repository
public interface AbcRepo extends MongoRepository<Abc,String>{
@Query(value = "{endDate:{$lt:?0}}")
public List<Abc> findAllInfo(DateTime t);
}
通过 checkmarx 运行代码时。我发现“资源访问授权不当”。
有关如何解决该问题的任何帮助?
我有一段代码
@Repository
public interface AbcRepo extends MongoRepository<Abc,String>{
@Query(value = "{endDate:{$lt:?0}}")
public List<Abc> findAllInfo(DateTime t);
}
通过 checkmarx 运行代码时。我发现“资源访问授权不当”。
有关如何解决该问题的任何帮助?