2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Springで環境作ってまずは画面を表示する

Posted at

( ゚д゚)ハッ!Springやりてぇ!!!
と思ったけど、知識ないし細々やって行こうと思う。

環境構築

macOS Sierra (10.12.4)

Spring Tool Suite

Springに特化したIDEであるSpring Tool Suiteをここからダウンロードする。

プロジェクト作成

「Spring Starter Project」を選択
Capture 2017-11-06 22.58.43.png

以下の通り入力。(赤☓はキャプチャし忘れ。既存フォルダ名(demo)を入力しているため。)
Capture 2017-11-06 22.59.19.png

ここで色々選択するとPOMに依存関係を追加してくれると思うんだけど、今回はそのまま「NEXT」。
Capture 2017-11-06 22.59.58.png

気にせず「FINISH」。
Capture 2017-11-06 23.00.14.png

POM編集

<?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>

	<groupId>com.example</groupId>
	<artifactId>demo</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>demo</name>
	<description>Demo project for Spring Boot</description>

	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>1.5.8.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<java.version>1.8</java.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
 		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>


</project>

ビルド

Capture 2017-11-19 10.56.25.png

コーディング

package com.example.demo;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class SampleController {

    @RequestMapping("/hello")
    private String hello(){
        return "Hello World!";
    }

    @RequestMapping("/")
    private String index(Model model){
    		System.out.println("SampleController#show called.");
    		
    		model.addAttribute("name", "kenji tajima");
    		model.addAttribute("lang", "Java");
    		model.addAttribute("framework", "Spring Framework");
    		
        return "index";
    }
}

動作確認

赤い四角に緑の参画が付いてるボタンを押して、サーバを起動する
Capture 2017-11-19 11.03.02.png

http://localhost:8080にアクセスする。
Capture 2017-11-06 23.22.25.png

(しょぼいけど)表示されるはず。

2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?