2020-1-3关于springboot配置

首先创建一个Maven工程项目。

配置pom.xml

打开工程项目下的pom.xml





    org.springframework.boot

    spring-boot-starter-parent

    2.0.2.RELEASE






    org.springframework.boot

    spring-boot-starter-web



        
        
            mysql
            mysql-connector-java
        

注:标签都放入标签内。



    

    

        

            org.springframework.boot

            spring-boot-maven-plugin

        

    

创建APP包(启动类),以及Controller包(接口类),并创建简单的相应类。


在以上包中创建

APP.class

@SpringBootApplication
@EnableJpaRepositories("com.pzx.jiaoyuxitong.repository")//仓储位置
@EntityScan("com.pzx.jiaoyuxitong.entity")//实体类存放位置
public class App 
{
    

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

Controller.class

package com.springboot.springbootDemo.controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;

@RestController

@RequestMapping("hello2")

public class HelloController {

       @RequestMapping("")

       public String hello() {

              return "helloworld2";

       }

}

你可能感兴趣的:(2020-1-3关于springboot配置)