Full-stack improvement with Java, React, and Spring Boot, Half 2

[ad_1]


// src/primary/java/com/instance/iwreactspring/service/TodoService.java 
bundle com.instance.iwreactspring.service;

import java.util.Listing;
import java.util.ArrayList;
import com.instance.iwreactspring.mannequin.TodoItem;
import org.springframework.stereotype.Service;

import org.springframework.beans.manufacturing facility.annotation.Autowired;
import com.mongodb.shopper.MongoClient;
import com.mongodb.shopper.MongoClients;
import com.mongodb.shopper.MongoCollection;
import com.mongodb.shopper.MongoDatabase;
import org.bson.codecs.configuration.CodecRegistry;
import org.bson.codecs.pojo.PojoCodecProvider;
import org.bson.Doc;

import com.instance.iwreactspring.repository.TodoRepository;

@Service
public class TodoService {

  @Autowired
  personal TodoRepository todoRepository;

  public Listing<TodoItem> getTodos() {
    return todoRepository.findAll();
  }

  public TodoItem createTodo(TodoItem newTodo) {
    TodoItem savedTodo = todoRepository.save(newTodo);
    return savedTodo;
  }
  public TodoItem getTodo(String id) {
    return todoRepository.findById(id).orElse(null);
  }

  public boolean deleteTodo(String id) {
    TodoItem todoToDelete = getTodo(id);
    if (todoToDelete != null) {
      todoRepository.deleteById(id);
      return true;
    } else {
      return false;
    }
  }
  public TodoItem saveTodo(TodoItem todoItem) {
    TodoItem savedTodo = todoRepository.save(todoItem);
    return savedTodo;
  }
}

We annotate this class with @Service to indicate it as a service class. Once more, this isn’t strictly required, as a result of Spring can use the category as an injected bean with out the annotation, however annotating the category makes issues extra descriptive. Subsequent, we use @AutoWired to deliver the TodoRepository class in. This might be populated by Spring primarily based on the category sort, which is the com.instance.iwreactspring.repository.TodoRepository we noticed earlier.

By default, Spring makes use of singleton injection (one occasion of the injected bean class), which works nicely for us.

CRUD operations on the service class

Every technique on this class is devoted to performing one CRUD operation utilizing the repository. For instance, we’d like a approach to get all of the to-dos within the database, and getTodos() does that for us. The Repository class makes it very straightforward, too: return todoRepository.findAll() returns all of the data (aka paperwork) within the todo assortment (aka, database).

[ad_2]

Leave a Reply

Your email address will not be published. Required fields are marked *