How to set id of spring repository entry to exact value?











up vote
1
down vote

favorite












I have a entity class like this:



@Getter
@Setter
@Entity
@AllArgsConstructor
public class Employee{
@Id
private Long id;
private String name;
}


and repository:



public interface EmployeeRepository extends CrudRepository<Employee, Long>{}


Now, in my service class I have:



EmployeeRepository employeeRepository;

public void addEmployee(EmployeeForm employeeForm){
//EmployeeForm is simple inteface
Employee employee = new Employee(employeeForm.getId(), employeeForm.getName());
employeeRepository.save(employee);
}


This will assign some id to the employee, ignoring id I got from EmployeeForm.



Because I need to import list of employees from some other place, and there is already id assigned to each employee, how can I make EmployeeRepository to register each employee with id I gave it?










share|improve this question
























  • If you're going to set the Id yourself, you've already done enough, just the @Id annotation is ok.
    – Essex Boy
    Nov 22 at 15:51










  • I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.
    – pajkeki
    Nov 22 at 16:29















up vote
1
down vote

favorite












I have a entity class like this:



@Getter
@Setter
@Entity
@AllArgsConstructor
public class Employee{
@Id
private Long id;
private String name;
}


and repository:



public interface EmployeeRepository extends CrudRepository<Employee, Long>{}


Now, in my service class I have:



EmployeeRepository employeeRepository;

public void addEmployee(EmployeeForm employeeForm){
//EmployeeForm is simple inteface
Employee employee = new Employee(employeeForm.getId(), employeeForm.getName());
employeeRepository.save(employee);
}


This will assign some id to the employee, ignoring id I got from EmployeeForm.



Because I need to import list of employees from some other place, and there is already id assigned to each employee, how can I make EmployeeRepository to register each employee with id I gave it?










share|improve this question
























  • If you're going to set the Id yourself, you've already done enough, just the @Id annotation is ok.
    – Essex Boy
    Nov 22 at 15:51










  • I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.
    – pajkeki
    Nov 22 at 16:29













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have a entity class like this:



@Getter
@Setter
@Entity
@AllArgsConstructor
public class Employee{
@Id
private Long id;
private String name;
}


and repository:



public interface EmployeeRepository extends CrudRepository<Employee, Long>{}


Now, in my service class I have:



EmployeeRepository employeeRepository;

public void addEmployee(EmployeeForm employeeForm){
//EmployeeForm is simple inteface
Employee employee = new Employee(employeeForm.getId(), employeeForm.getName());
employeeRepository.save(employee);
}


This will assign some id to the employee, ignoring id I got from EmployeeForm.



Because I need to import list of employees from some other place, and there is already id assigned to each employee, how can I make EmployeeRepository to register each employee with id I gave it?










share|improve this question















I have a entity class like this:



@Getter
@Setter
@Entity
@AllArgsConstructor
public class Employee{
@Id
private Long id;
private String name;
}


and repository:



public interface EmployeeRepository extends CrudRepository<Employee, Long>{}


Now, in my service class I have:



EmployeeRepository employeeRepository;

public void addEmployee(EmployeeForm employeeForm){
//EmployeeForm is simple inteface
Employee employee = new Employee(employeeForm.getId(), employeeForm.getName());
employeeRepository.save(employee);
}


This will assign some id to the employee, ignoring id I got from EmployeeForm.



Because I need to import list of employees from some other place, and there is already id assigned to each employee, how can I make EmployeeRepository to register each employee with id I gave it?







java spring






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 16:04

























asked Nov 22 at 15:45









pajkeki

104




104












  • If you're going to set the Id yourself, you've already done enough, just the @Id annotation is ok.
    – Essex Boy
    Nov 22 at 15:51










  • I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.
    – pajkeki
    Nov 22 at 16:29


















  • If you're going to set the Id yourself, you've already done enough, just the @Id annotation is ok.
    – Essex Boy
    Nov 22 at 15:51










  • I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.
    – pajkeki
    Nov 22 at 16:29
















If you're going to set the Id yourself, you've already done enough, just the @Id annotation is ok.
– Essex Boy
Nov 22 at 15:51




If you're going to set the Id yourself, you've already done enough, just the @Id annotation is ok.
– Essex Boy
Nov 22 at 15:51












I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.
– pajkeki
Nov 22 at 16:29




I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.
– pajkeki
Nov 22 at 16:29












2 Answers
2






active

oldest

votes

















up vote
1
down vote



accepted










I think that you are missing: @Entity on your Employee Entity, the other should be done by it self.
You can check extra for a difference between long and Long, but this should not cause a problem as it is.



Hope this helps..






share|improve this answer





















  • Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
    – pajkeki
    Nov 22 at 16:03










  • is it working now?
    – flopcoder
    Nov 22 at 16:36


















up vote
0
down vote













I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.






share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434386%2fhow-to-set-id-of-spring-repository-entry-to-exact-value%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    I think that you are missing: @Entity on your Employee Entity, the other should be done by it self.
    You can check extra for a difference between long and Long, but this should not cause a problem as it is.



    Hope this helps..






    share|improve this answer





















    • Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
      – pajkeki
      Nov 22 at 16:03










    • is it working now?
      – flopcoder
      Nov 22 at 16:36















    up vote
    1
    down vote



    accepted










    I think that you are missing: @Entity on your Employee Entity, the other should be done by it self.
    You can check extra for a difference between long and Long, but this should not cause a problem as it is.



    Hope this helps..






    share|improve this answer





















    • Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
      – pajkeki
      Nov 22 at 16:03










    • is it working now?
      – flopcoder
      Nov 22 at 16:36













    up vote
    1
    down vote



    accepted







    up vote
    1
    down vote



    accepted






    I think that you are missing: @Entity on your Employee Entity, the other should be done by it self.
    You can check extra for a difference between long and Long, but this should not cause a problem as it is.



    Hope this helps..






    share|improve this answer












    I think that you are missing: @Entity on your Employee Entity, the other should be done by it self.
    You can check extra for a difference between long and Long, but this should not cause a problem as it is.



    Hope this helps..







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 22 at 15:58









    Nenad Vichentikj

    719




    719












    • Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
      – pajkeki
      Nov 22 at 16:03










    • is it working now?
      – flopcoder
      Nov 22 at 16:36


















    • Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
      – pajkeki
      Nov 22 at 16:03










    • is it working now?
      – flopcoder
      Nov 22 at 16:36
















    Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
    – pajkeki
    Nov 22 at 16:03




    Actually, I've already added @Entity, but when you mentioned Long, I remembered that I should be using it instead of long when I'm dealing with repositories.
    – pajkeki
    Nov 22 at 16:03












    is it working now?
    – flopcoder
    Nov 22 at 16:36




    is it working now?
    – flopcoder
    Nov 22 at 16:36












    up vote
    0
    down vote













    I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.






    share|improve this answer

























      up vote
      0
      down vote













      I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.






      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.






        share|improve this answer












        I was missing @NoArgsConstructor, and in Postman I was supposed to fully match "id" as it was in EmployeeForm. employeeRepository.save(employee) works fine with user set ID, it doesn't override it.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 22 at 16:51









        pajkeki

        104




        104






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434386%2fhow-to-set-id-of-spring-repository-entry-to-exact-value%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            What visual should I use to simply compare current year value vs last year in Power BI desktop

            Alexandru Averescu

            Trompette piccolo