用maven 搭建 Spring boot工程

1.创建Maven项目

这里写图片描述
2.选择项目类型
这里写图片描述

3.选择项目
这里写图片描述

4.编写项目组和名称-finish即可
这里写图片描述

5.修改pom.xml文件
加入如下配置:

 <!--spring boot 基础环境-->
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.6.RELEASE</version>
</parent>

6.pom.xml中添加依赖

<!--web应用基本环境配置 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

7.pom.xml中添加编译插件

<build>
    <plugins>
        <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 -->
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

8.基础包和类
这里写图片描述

9.App.java

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

@SpringBootApplication
public class App {

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

10.OneController.java

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class OneController {

    @RequestMapping("/")
    @ResponseBody
    public String index(){
        return "hello spring boot";
    }
}


11.启动项目
运行 App.java 中的 main方法
12.访问项目
http://localhost:8080/
会访问到 OneController.java 中的index方法

以上即可完成spring boot的项目搭建;
然而当我尝试加入数据源配置时,遇到了各种奇葩的问题,搞了一上午,终于找到了一个能正常运行的配置:

首先为了实现dao层类的注入,加入如下代码:

SpringBootApplication
/*@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})*/
@ComponentScan(basePackages= {"com.test.userManage.dao","com.test.userManage.controller"})
public class App {  .........  }

然后,在pom.xml中加入新的依赖:

     <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>


         <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.1.1</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
          </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>

最后,创建配置文件application.properties(若工程中已有,则忽略),在此文件中加入数据源配置:
(我使用的是mysql数据库,请他类型可做参考)

pring.datasource.url=jdbc:mysql://ip:3306/preetccrm?useSSL=false
spring.datasource.username=root
spring.datasource.password=password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

spring.datasource.max-idle=10
spring.datasource.max-wait=10000
spring.datasource.min-idle=5
spring.datasource.initial-size=5
spring.datasource.validation-query=SELECT 1
spring.datasource.test-on-borrow=false
spring.datasource.test-while-idle=true
spring.datasource.time-between-eviction-runs-millis=18800
spring.datasource.jdbc-interceptors=ConnectionState;SlowQuyReport(thresh
old=0)

需要注意的是:输入用户名和密需要注意的是:输入用户名和密码时,要保证前后没有空格,否则会连接失败,因为连接时把空格也算作字符了,亲身经历,这个地方困扰了好久,大家引以为戒。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值