Git Product home page Git Product logo

Comments (5)

MrWangGang avatar MrWangGang commented on July 19, 2024

@spring-projects-issues
@nikos
@nemtsov
@rmorgan

from spring-data-mongodb.

christophstrobl avatar christophstrobl commented on July 19, 2024

Thank you for reaching out - If you'd like us to spend some time investigating, please take the time to provide a complete minimal sample (something that we can unzip or git clone, build, and deploy) that reproduces the problem.

from spring-data-mongodb.

MrWangGang avatar MrWangGang commented on July 19, 2024

I find it difficult to provide samples involving databases; it's very troublesome. Perhaps you could simply set up a project.

Define your converter:

@WritingConverter
public class EnumWriteConverter implements Converter<ConverterEnum, String> {
    public EnumWriteConverter() {
    }

    public String convert(ConverterEnum source) {
        return source.getValue();
    }
}

Define the interface:

public interface ConverterEnum {
    String getDescription();

    @JsonValue
    String getValue();
}

Define the enumeration:

public enum EnumCommerceItemDeletedEnum implements ConverterEnum {
    ENUM_COMMERCE_ITEM_DELETED_DELETE("Delete", "DELETE"),
    ENUM_COMMERCE_ITEM_DELETED_UNDELETE("Undelete", "UNDELETE");

    EnumCommerceItemDeletedEnum(String description, String value) {
        this.description = description;
        this.value = value;
    }

    private final String value;
    private final String description;
}

Then create a Spring Data interface:

@Aggregation({
    "{$addFields: { '_idString': { $toString: '$_id' } }}",
    "{$match: { userId: ?0 }}",
    "{$match: { deletedEnum: ?1 }}",
    "{$count: 'totalCount' }"
})
Mono<Long> count(String userId, EnumCommerceItemDeletedEnum deleted);

You can test two scenarios: one based on @Aggregation and one based on a named method. However, I have tested it before, and using repository.find(Example) does not cause such issues. Only when using @query or @Aggregation to execute queries with native SQL, the converter gets called multiple times.

from spring-data-mongodb.

MrWangGang avatar MrWangGang commented on July 19, 2024

@spring-projects-issues

from spring-data-mongodb.

christophstrobl avatar christophstrobl commented on July 19, 2024

thanks for the feedback - I see the invocations now. there's multiple things contributing to this. we'll look into those.

from spring-data-mongodb.

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.