web-dev-qa-db-ja.com

MySQLデータベースとJPAでSpring Bootを使用する方法は?

MySQLとJPAでSpring Bootを設定したい。このために作成します:Person

package domain;

import javax.persistence.*;

@Entity
@Table(name = "person")
public class Person {

@Id
@GeneratedValue
private Long id;

@Column(nullable = false)
private String firstName;

// setters and getters
}

PersonRepository

package repository;

import domain.Person;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.repository.CrudRepository;


public interface PersonRepository extends CrudRepository<Person, Long> {

Page<Person> findAll(Pageable pageable);
}

PersonController

package controller;

import domain.Person;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import repository.PersonRepository;

@Controller
public class PersonController {

@Autowired
private PersonRepository personRepository;

@RequestMapping("/")
@ResponseBody
public String test() {
    Person person = new Person();
    person.setFirstName("First");
    person.setLastName("Test");
    personRepository.save(person);
    return "hello";
}
}

開始クラス

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Example {

public static void main(String[] args) throws Exception {
    SpringApplication.run(Example.class, args);
}

}

そして、データベース構成のために、application.propertiesを作成します

spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.properties.hibernate.globally_quoted_identifiers=true

spring.datasource.url=jdbc:mysql://localhost/test_spring_boot
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driverClassName=com.mysql.jdbc.Driver

だから私はプロジェクト構造を持っています:

enter image description here

しかし、結果として私には例外があります:

org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [Example]; nested exception is Java.io.FileNotFoundException: class path resource [org/springframework/security/config/annotation/authentication/configurers/GlobalAuthenticationConfigurerAdapter.class] cannot be opened because it does not exist

例として使用します: spring-boot-sample-data-jpa/pom.xml

22
somebody

あなたと同じようにプロジェクトを作成しました。構造はこんな感じ

project structure

クラスはあなたからコピーされたものです。

application.propertiesを次のように変更しました:

spring.datasource.url=jdbc:mysql://localhost/testproject
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.jpa.hibernate.ddl-auto=update

しかし、あなたの問題はあなたのpom.xmlにあると思います:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.1.RELEASE</version>
</parent>

<artifactId>spring-boot-sample-jpa</artifactId>
<name>Spring Boot JPA Sample</name>
<description>Spring Boot JPA Sample</description>

<dependencies>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-Java</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

これらのファイルの違いを確認してください。お役に立てれば

更新1:ユーザー名を変更しました。例へのリンクは現在 https://github.com/Yannic92/stackOverflowExamples/tree/master/SpringBoot/MySQL です。

23
Yannic Klem

リポジトリ、コントローラー、ドメインなどの特定のパッケージにクラスを移動するときは、汎用の@SpringBootApplication 十分ではありません。

コンポーネントスキャンのベースパッケージを指定する必要があります

@ComponentScan("base_package")

JPAの場合

@EnableJpaRepositories(basePackages = "repository")

も必要であるため、Springデータはリポジトリインターフェースを探す場所を知っています。

3
Florin Grozea

スプリングブートリファレンス では、

クラスにパッケージ宣言が含まれていない場合、そのクラスは「デフォルトパッケージ」にあると見なされます。通常、「デフォルトパッケージ」の使用は推奨されないため、避ける必要があります。 @ ComponentScan、@ EntityScan、または@SpringBootApplicationアノテーションを使用するSpring Bootアプリケーションでは、すべてのjarのすべてのクラスが読み取られるため、特定の問題を引き起こす可能性があります。

_com
 +- example
     +- myproject
         +- Application.Java
         |
         +- domain
         |   +- Customer.Java
         |   +- CustomerRepository.Java
         |
         +- service
         |   +- CustomerService.Java
         |
         +- web
             +- CustomerController.Java
_

あなたの場合。 @SpringBootApplication(scanBasePackages={"domain","contorller"..})のように_@SpringBootApplication_アノテーションにscanBasePackagesを追加する必要があります

0
linghu