Giter Club home page Giter Club logo

Comments (4)

chlegou avatar chlegou commented on June 2, 2024

spring-projects/spring-data-mongodb#3857

from springfilter.

torshid avatar torshid commented on June 2, 2024

I need to do some research, that's completely new to me. I also don't know for now if it's in the scope of the project. :)
You can always open pull requests if you got an idea for the implementation. The main file is here https://github.com/turkraft/spring-filter/blob/main/src/main/java/com/turkraft/springfilter/parser/generator/bson/BsonGenerator.java.

from springfilter.

chlegou avatar chlegou commented on June 2, 2024

The only idea i had was to change the annotation value in runtime. But i wasn't able to do it.
Do you know a way to make an annotation takes the value from the method params in runtime? (Param must be list or array of string or document)
Once done, the rest would be easier i think.

from springfilter.

torshid avatar torshid commented on June 2, 2024

Hi @chlegou

The new version supports Mongo aggregations. You can implement your custom operator/function if needed:

@Component
public class CustomFunction extends FilterFunction {

  protected CustomFunction() {
    super("customFunction");
  }

}
@Component
class CustomFunctionJsonNodeProcessor implements
    FilterFunctionProcessor<FilterJsonNodeTransformer, JsonNode> {

  @Override
  public Class<FilterJsonNodeTransformer> getTransformerType() {
    return FilterJsonNodeTransformer.class;
  }

  @Override
  public Class<CustomFunction> getDefinitionType() {
    return CustomFunction.class;
  }

  @Override
  public JsonNode process(FilterJsonNodeTransformer transformer, FunctionNode source) {
    // https://www.mongodb.com/docs/v6.0/reference/operator/aggregation/
    // return transformer.getObjectMapper().createObjectNode() ...
  }

}

Support for the @Aggregation annotation is out of scope for now though.

from springfilter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.