Spring BootでシンプルなデモMVCアプリを実装しようとしていますが、アプリケーションの実行中に404エラーが発生します。 URIは ` http:// localhost:8080 / 'であり、これは円と呼ばれるテーブルのすべての行を表示します。
Maven Javaプロジェクト:
Application.Java
package com.nomad.dubbed.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args){
SpringApplication.run(Application.class, args);
}
}
CircleController.Java
package com.nomad.dubbed.controller;
import Java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.nomad.dubbed.dao.CircleService;
import com.nomad.dubbed.model.Circle;
@RestController
@RequestMapping("/")
public class CircleController {
@Autowired
private CircleService circleService;
@RequestMapping(method=RequestMethod.GET)
public List<Circle> getAll() {
return circleService.getAll();
}
}
CircleRepository.Java
package com.nomad.dubbed.dao;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.nomad.dubbed.model.Circle;
@Repository
public interface CircleRepository extends JpaRepository<Circle, Integer> {
}
CircleService.Java
package com.nomad.dubbed.dao;
import Java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import com.nomad.dubbed.model.Circle;
@Service
public class CircleService {
@Autowired
private CircleRepository circleRepository;
@Transactional(propagation=Propagation.REQUIRED)
public List<Circle> getAll(){
return circleRepository.findAll();
}
}
Circle.Java
package com.nomad.dubbed.model;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="circle")
public class Circle {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private int id;
private String name;
public Circle(int id, String name) {
super();
this.id = id;
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
application.properties
spring.datasource.url=jdbc:derby://localhost:1527/db
spring.datasource.driverClassName=org.Apache.derby.jdbc.ClientDriver
logging.level.org.springframework.web:DEBUG
logging.level.org.hibernate:DEBUG
pom.xml
<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>
<groupId>com.nomad.dubbed</groupId>
<artifactId>spring-boot-mvc</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<derby-client.version>10.11.1.1</derby-client.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
<relativePath />
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</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-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-remote-Shell</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.Apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<version>${derby-client.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>spring-boot-mvc</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
データベースは稼働中で、表の円には5行あります。
デフォルトのuri(/ beans、/ health ..)は正常に機能しますが、実装されたコントローラーは認識されません。コンソールに表示されるそのようなエラーはありません。以下は、リクエストを送信した後にコンソールに出力されるログのダンプです。
2016-05-03 14:17:26.594 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/]
2016-05-03 14:17:26.596 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /
2016-05-03 14:17:26.596 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/]
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping : Matching patterns for request [/] are [/**]
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping : URI Template variables for request [/] are {}
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapping [/] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@6c13019c]]] and 1 interceptor
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Last-Modified value for [/] is: -1
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Successfully completed request
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/error]
2016-05-03 14:17:26.600 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /error
2016-05-03 14:17:26.600 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)]
2016-05-03 14:17:26.600 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Last-Modified value for [/error] is: -1
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.v.ContentNegotiatingViewResolver : Requested media types are [text/html, text/html;q=0.8] based on Accept header types and producible media types [text/html])
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.v.ContentNegotiatingViewResolver : Returning [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$SpelView@2f5f8d71] based on requested media type 'text/html'
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Rendering view [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$SpelView@2f5f8d71] in DispatcherServlet with name 'dispatcherServlet'
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet : Successfully completed request
コントローラに別のURLを使用します。 spring-bootの「/」は、META-INF/resourcesおよびsrc/main/resources/static /にある静的リソースにマップされます。
編集:上記を忘れて、アプリケーションクラスで以下を実行します。
Application.Java
package com.nomad.dubbed.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@ComponentScan("com.nomad.dubbed")
public class Application {
public static void main(String[] args){
SpringApplication.run(Application.class, args);
}
}
残りのコントローラーは、スプリングブーツコンポーネントのスキャンでは検出されません。このドキュメントによると http://docs.spring.io/spring-boot/docs/current/reference/html/ …Springは、@ SpringBootApplicationアノテーションを持つクラスが存在するパッケージの下のパッケージをスキャンします。コントローラはパラレルパッケージにあります。
@SpringBootApplicationでは@ComponentScanアノテーションを使用しないでください。これは適切な方法ではありません。 @SpringBootApplicationは、03アノテーション@ ComponentScan、@ EnableAutoConfiguration、@ Configurationの組み合わせです。
回答は、@ SpringBootApplicationアノテーションを持つMainクラスが親/スーパーパッケージにある必要があります。たとえば-com.spring.learningは親パッケージであり、子はcom.spring.learning.controller、com.spring.learning.service、com.spring.learning.pojoなので、パッケージとサブパッケージをスキャンします。これは正しい習慣です。プロジェクトのレイアウトまたは構造は、Spring Bootの主要な概念です。
これは背後で何が起こるかです。
@SpringBootApplication
アノテーションは@Configuration
@EnableAutoConfiguration
@ComponentScan
の組み合わせです。
引数なしの@ComponentScan
は、同じパッケージとそのサブパッケージでコンポーネント/ Beanを見つけるようにフレームワークに指示します。
@SpringBootApplication
で注釈されたApplication
クラスは、パッケージcom.nomad.dubbed.app
にあります。そのため、そのパッケージとその下のサブパッケージ(com.nomad.dubbed.app.*
など)をスキャンします。ただし、CircleController
は、デフォルトではスキャンされないパッケージcom.nomad.dubbed.controller
内にあります。リポジトリもデフォルトのスキャンパッケージから外れているため、Spring Frameworkによっても検出されません。
では、どうすればよいですか?、2つのオプションがあります。
オプション1
Application
クラスを最上位のディレクトリ(パッケージ)に移動します。あなたの場合com.nomad.dubbed
パッケージ。次に、すべてのコントローラーと他のリポジトリーがサブパッケージにあるため、それらはフレームワークによって検出されます。
オプション2
basePackages
引数で@ComponentScan
アノテーションを使用し、以下のようにApplication
クラスの@SpringBootApplication
を使用します。
@SpringBootApplication
@ComponentScan(basePackages="com.nomad.dubbed")
public class Application {
public static void main(String[] args){
SpringApplication.run(Application.class, args);
}
}
スプリング-ブートが元のパッケージ構造のコントローラーを認識できなかった理由をもっと調査する必要があります。すべてのJavaクラスを1つのパッケージにダンプし、最後にデモプロジェクトを実行しました。
変更Javaプロジェクト構造:
CircleController.Javaクラスも変更されました。特定のリクエストメソッドmethod=RequestMethod.GET
について言及せずに、すべてのレコードをサークルテーブルから削除しました。
package com.nomad.dubbed.app;
import Java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class CircleController {
@Autowired
private CircleService circleService;
@RequestMapping(value="/circles", method=RequestMethod.GET)
public List<Circle> getAll() {
return circleService.getAll();
}
}
私の意見では、この可視性の問題は、コンポーネントのスキャンをSpringに任せたときに発生します。Springは、標準の規則を使用してクラスを検索する特定の方法を備えています。このシナリオでは、スタータークラス(アプリケーション)がcom.nomad.dubbed.appパッケージにあるため、Controllerを1レベル下に置くと、Springがデフォルトのコンポーネントスキャンメカニズムを使用してクラスを見つけるのに役立ちます。 CircleControllerをcom.nomad.dubbed.app.controllerの下に置くと、問題が解決するはずです。
@ResponseBody
アノテーションを追加してみてください
@RequestMapping(method=RequestMethod.GET)
@ResponseBody
public List<Circle> getAll() {
return circleService.getAll();
}
同様の問題がありました。 Applicationクラスに注釈@ SpringBootApplication(scanBasePackages = {"com.nomad.dubbed"})を追加するとうまくいきました。
同じ問題が発生したため、Applicationクラスに@ ComponentScan(basePackages = "package.name")を追加しました。その後、残りのコントローラーが認識されました。
パッケージcom.nomad.dubbed.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@ComponentScan(basePackages = "com.spring.basepkg")
public class Application {
public static void main(String[] args){
SpringApplication.run(Application.class, args);
}
}
実際、springbootsは、例のように、コアパッケージの下のすべてのコンポーネントをスキャンします。
パッケージcom.nomad.dubbed.app;
コントローラ、サービス、daoパッケージをcom.nomad.dubbed.app.controllers、com.nomad.dubbed.app.services、com.nomad.dubbed.app.daoの下に追加した場合.
そうすれば、残りのコントローラーを簡単に実行できますが、com.nomad.dubbed.controllers、com.nomad.dubbed.servicesのように、すべてのパッケージをコアのspringbootパッケージと並行して追加すると、.
次に、@ ComponentScan({"com.nomad.dubbed.controllers"、 "com.nomad.dubbed.services"})をスキャンする必要があります
コンポーネントを選択する場合は、Springbootアプリケーションパッケージもスキャンする必要があります。
だから最善の方法は、春のブートアプリケーションdubbed.app.xyzの下にすべてのパッケージを作成することです...