Serviceclass, реализующий jparepository, всегда возвращает нулевое значение в весеннем загрузочном приложении - PullRequest
0 голосов
/ 15 апреля 2019

Я новичок в Java и Spring Boot. Я создал простое весеннее приложение, которое извлекает сведения о студентах из базы данных с помощью JPArepository. Ниже приводится сущность studentDetais:

package com.example.webcustomertracker.entity;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "StudentDetails")
public class StudentDetails {
	
	@Id
	@GeneratedValue(strategy = GenerationType.IDENTITY) 
	private Integer StudentID;
	private String Name;
	private String Surname;
	private String City;
	
	public StudentDetails() {}

	public String getName() {
		return Name;
	}

	public void setName(String name) {
		Name = name;
	}

	public String getSurname() {
		return Surname;
	}

	public void setSurname(String surname) {
		Surname = surname;
	}

	public String getCity() {
		return City;
	}

	public void setCity(String city) {
		City = city;
	}

	public StudentDetails(String name, String surname, String city) {
		Name = name;
		Surname = surname;
		City = city;
	}

	@Override
	public String toString() {
		return "StudentDetails [Name=" + Name + ", Surname=" + Surname + ", City=" + City + "]";
	}
	
	

}

Ниже приводится JPARepo:

  package com.example.webcustomertracker.data; 
  
  import org.springframework.data.jpa.repository.JpaRepository;

  import com.example.webcustomertracker.entity.StudentDetails;
  
  public interface StudentDetailsRepository extends JpaRepository<StudentDetails, Integer> 
  { 
	   
  }
 

Ниже приведен класс обслуживания:

package com.example.webcustomertracker.data;

import java.util.Optional;

import com.example.webcustomertracker.entity.StudentDetails;

public interface StudentDetailsService {

	public abstract Optional<StudentDetails> getStudentDetails(int StudentId);
}

Ниже приведена реализация класса обслуживания

package com.example.webcustomertracker.data;

import java.util.Optional;

import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

import com.example.webcustomertracker.entity.StudentDetails;

@Component
public class StudentDetailsDataAccess implements StudentDetailsService {

	private StudentDetailsRepository studentDetailsRepository;
	
	public StudentDetailsDataAccess(StudentDetailsRepository theStudentDetailsRepository) {
		this.studentDetailsRepository = theStudentDetailsRepository;				
	}

	@Transactional
	public Optional<StudentDetails> getStudentDetails(int StudentId) {
		// TODO Auto-generated method stub
		
		Optional<StudentDetails> objStud =  this.studentDetailsRepository.findById(StudentId);
		
		
		
		return objStud;
	}
	
	
	
}

Ниже приводится основной класс, который загружает каркас пружины. Я просто пытаюсь вызвать одну из функций службы, но экземпляр службы имеет нулевое значение и не может быть выполнен.

package com.example.webcustomertracker;

import java.util.Optional;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

import com.example.webcustomertracker.data.StudentDetailsDataAccess;
import com.example.webcustomertracker.data.StudentDetailsService;
import com.example.webcustomertracker.entity.StudentDetails;

@SpringBootApplication
public class WebCustomerTrackerApplication {
    
    @Autowired
 	private StudentDetailsService studentDetailsService;

	public Optional<StudentDetails> getTheStudentDetails(int id) {
		return studentDetailsService.getStudentDetails(id);
	}

	public static void main(String[] args) {
		SpringApplication.run(WebCustomerTrackerApplication.class, args); 
		
		Optional<StudentDetails> objStudent = new WebCustomerTrackerApplication().getTheStudentDetails(11);

	}

	
}

Ниже приведена ошибка, которую я получаю после запуска кода:

Exception in thread "main" java.lang.NullPointerException
	at com.example.webcustomertracker.WebCustomerTrackerApplication.getTheStudentDetails(WebCustomerTrackerApplication.java:20)
	at com.example.webcustomertracker.WebCustomerTrackerApplication.main(WebCustomerTrackerApplication.java:26)

Ответы [ 2 ]

1 голос
/ 15 апреля 2019

Autowire в слое контроллера.

Скажем, у вас есть контроллер с именем IndexController авто провод там.

например

    StudentDetailsService studentService;
    @Autowired
    public IndexController(StudentDetailsService studentService){
Optional<StudentDetails> objStudent = new studentService.getTheStudentDetails(11);
}
0 голосов
/ 15 апреля 2019

Другое решение будет,

    @SpringBootApplication
public class WebCustomerTrackerApplication {

    @Autowired
    private StudentDetailsService studentDetailsService;

    public Optional<StudentDetails> getTheStudentDetails(int id) {
        return studentDetailsService.getStudentDetails(id);
    }

    public static void main(String[] args) throws InterruptedException {
        SpringApplication.run(WebCustomerTrackerApplication.class, args); 
        Thread.sleep(1500);
        Optional<StudentDetails> objStudent = new WebCustomerTrackerApplication().getTheStudentDetails(11);

    }

}

здесь он ожидает запуска приложения (все компоненты загружены). к этому времени вы не получите исключение нулевого указателя, так как объект службы создан.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...