Home > Back-end >  Increase counter if a value exists
Increase counter if a value exists

Time:10-05

In my database, I am searching for a specific value. If that value does not exist, it should simply be added, but if it exists, a counter should be added next to it.

So for instance, if the value Hello World already exists, the added value should be Hello World 1, the next one should be Hello World 2 and so on...

This is what I have tried:

int id = newQuoteRepository.findByTitle(data.getTitle()).size();
System.out.println(id);
if (id > 0) {
    data.setTitle(data.getTitle()   id);
}

Well, basically it works but it is not really what I want. So if a value is bar, it will add bar1. And next time, it will add bar1 again, because it is searching for bar and so the added value, which was bar1, will be ignored.

So this is what I have: bar, bar1, bar1, bar1 ...

And this is how it should be: bar, bar1, bar2, bar3 ...

What could be a solution for this issue?

CodePudding user response:

You can use findByTitleLike instead of findByTitle for your task.It will find titles match with the given regex.

CodePudding user response:

Well, you are not incrementing d...

if (id > 0) {
    data.setTitle(data.getTitle()   id  );
}
  • Related