`

1、springboot入门案例helloworld与集成hibernate

阅读更多
Spring Boot使我们更容易去创建基于Spring的独立和产品级的可以”即时运行“的应用和服务。支持约定大于配置,目的是尽可能快地构建和运行Spring应用。

之前我们创建基于Spring的项目需要考虑添加哪些Spring依赖和第三方的依赖。使用Spring Boot后,我们可以以最小化的依赖开始spring应用。大多数Spring Boot应用需要很少的配置即可运行,比如我们可以创建独立独立大Java应用,然后通过java -jar运行启动或者传统的WAR部署。其也提供了命令行工具来直接运行Spring脚本(如groovy脚本)。也就是说Spring Boot让Spring应用从配置到运行变的更加简单,但不对Spring本身提供增强(即额外的功能)。

目的:
让所有Spring开发变得更快,且让更多的人更快的进行Spring入门体验,提供“starter” POM来简化我们的Maven配置(也就是说使用Spring Boot只有配合maven/gradle等这种依赖管理工具才能发挥它的能力),不像以前,构建一个springmvc项目需要进行好多配置等
开箱即用,快速开始需求开发而不被其他方面影响(如果可能会自动配置Spring)

提供一些非功能性的常见的大型项目类特性(如内嵌服务器、安全、度量、健康检查、外部化配置),如可以直接地内嵌Tomcat/Jetty(不需要单独去部署war包)
绝无代码生成,且无需XML配置



一、创建一个普通maven的Jar项目,在pom.xml中引入springboot的依赖包
  <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>
    </dependencies>


二、创建Controller类
package com.chen.controller;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@EnableAutoConfiguration
public class HelloWorldController {

    @RequestMapping(value="/hello",method=RequestMethod.GET)
    @ResponseBody
    public String sayHello(){

        return "hello world!";
    }

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


运行HelloWorldController类,在浏览器上输入http://localhost:8080/hello
即可查看到调用结果 。


常遇问题:
1、引入parent失败
     <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.3.3.RELEASE</version>
  </parent> 
配置仓库即可
    <repositories>
        <repository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/libs-snapshot</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/libs-snapshot</url>
        </pluginRepository>
    </pluginRepositories> 


2、
<build> 
    <plugins> 
        <plugin> 
            <groupId>org.springframework.boot</groupId> 
            <artifactId>spring-boot-maven-plugin</artifactId> 
        </plugin> 
    </plugins> 
</build> 
继承spring-boot-starter-parent后我们可以继承一些默认的依赖,这样就无需添加一堆相应的依赖,把依赖配置最小化;spring-boot-starter-web提供了对web的支持,spring-boot-maven-plugin提供了直接运行项目的插件,我们可以直接mvn spring-boot:run运行。


二、运行 

第一种方式
通过在UserController中加上@EnableAutoConfiguration开启自动配置,然后通过SpringApplication.run(UserController.class);运行这个控制器;这种方式只运行一个控制器比较方便;
第二种方式
通过@Configuration+@ComponentScan开启注解扫描并自动注册相应的注解Bean


package com.chen.controller;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@EnableConfigurationProperties
public class WelcomeController {

    @RequestMapping(value="/welcome",method=RequestMethod.GET)
    @ResponseBody
    public String welcome(){
        return "welcome";
    }
}


package com.chen.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan(basePackages="com")
@EnableAutoConfiguration
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
运行Application类即可发布整个应用


三、springboot应用添加hibernate持久层框架

1、引入依赖包
<dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
         <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-core</artifactId>
      <version>4.3.7.Final</version>
    </dependency>
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.1.34</version>
    </dependency>

2、添加application.properties配置文件
spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.jpa.database = MYSQL
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql = true
spring.jpa.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect


3、写POJO
package com.chen.pojo;

import java.util.Date;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="t_user")
public class User {
    private Long id ;
    private String username;
    private Date birthday;
    private String sex ;
    private String address;
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    @Column(name="id")
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    @Column(name="username")
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    @Column(name="birthday")
    public Date getBirthday() {
        return birthday;
    }
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
    @Column(name="sex")
    public String getSex() {
        return sex;
    }
    public void setSex(String sex) {
        this.sex = sex;
    }
    @Column(name="adress")
    public String getAddress() {
        return address;
    }
    public void setAddress(String address) {
        this.address = address;
    }
    @Override
    public String toString() {
        return "User [id=" + id + ", username=" + username + ", birthday="
                + birthday + ", sex=" + sex + ", address=" + address + "]";
    }

}
 

4、写repository
package com.chen.repository;

import javax.persistence.Table;

import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;

import com.chen.pojo.User;

@Repository
@Table(name="t_user")
@Qualifier("userRepository")
public interface UserRepository extends CrudRepository<User,Long>{
    public User findOne(Long id);

    @Query("select t from User t where t.username=:name")
    public User findUserByName(@Param("name") String name);
}

5、在启动类添加注解
package com.chen.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.orm.jpa.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@Configuration
@ComponentScan(basePackages="com.chen")
@EnableAutoConfiguration
@EntityScan(basePackages="com.chen.pojo")
@EnableJpaRepositories(basePackages="com.chen.repository")
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}


6、添加控制器类
package com.chen.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

import com.chen.pojo.User;
import com.chen.repository.UserRepository;

@Controller
@EnableAutoConfiguration
public class UserController {
    @Autowired
    private UserRepository userRepository;

    @RequestMapping(value="/user/getUserById")
    @ResponseBody
    public User getUserById(@RequestParam Long id){
        System.out.println("hello user");
        User u = userRepository.findOne(id);
        System.out.println(userRepository);
        System.out.println(u);
        return u;
    }

    @RequestMapping(value="/user/findUserByName")
    @ResponseBody
    public User findUserByName(@RequestParam String name){
        System.out.println("hello user");
        User u = userRepository.findUserByName(name);
        System.out.println(u);
        return u;
    }
}


源码见附件
分享到:
评论
2 楼 wangyudong 2018-03-15  
很有帮助的代码实例,测试Spring Boot REST API要写很多的UT代码,很繁琐,还好找到一个很适合测试REST API工具:
Wisdom RESTClient,支持自动化测试,生成REST API文档。
https://github.com/Wisdom-Projects/rest-client

感谢作者的分享,赞一个!
1 楼 wangyudong 2018-03-14  
学习了,的确是一个非常好的Spring boot实例,很快就写出了REST API,用Wisdom RESTClient顺利测通,生成精美的测试报告和API文档
https://github.com/Wisdom-Projects/rest-client

谢谢作者的分享!赞赞赞!

相关推荐

    springboot-helloworld.rar

    "springboot-helloworld.rar"这个压缩包,显然是一个入门级的示例,旨在帮助开发者快速理解并掌握SpringBoot的基本用法。在这个小项目中,我们将探讨SpringBoot的核心特性,以及如何构建一个简单的"Hello, World!...

    springboot的helloworld入门程序

    这个"springboot的helloworld入门程序"是初学者理解并掌握SpringBoot基础的一个绝佳起点。下面我们将深入探讨SpringBoot的基本概念、核心特性以及如何创建一个简单的"Hello, World!"程序。 1. **SpringBoot简介** ...

    springboot-helloworld

    在"springboot-helloworld"项目中,我们将深入探讨SpringBoot的基础知识和实践应用。 首先,让我们从“helloworld”这个经典的起点开始。在SpringBoot项目中,创建一个简单的"Hello, World!"应用通常涉及到以下步骤...

    3、springboot--hello world

    在“3、springboot--hello world”这个主题中,我们将深入探讨如何使用Spring Boot构建一个简单的“Hello World”应用,以及涉及的相关知识点。 首先,Spring Boot的核心特性是自动配置。它通过“starter”依赖管理...

    SpringBoot之HelloWorld的Maven项目(Eclipse)

    **SpringBoot之HelloWorld的Maven项目(Eclipse)** SpringBoot是由Pivotal团队开发的一个框架,旨在简化Spring应用程序的初始搭建以及开发过程。它集成了大量的常用库,如数据访问、安全、Web等,使得开发者可以...

    dubbo 入门案例 helloworld

    【标题】"Dubbo入门案例HelloWorld"是一个基础的学习教程,旨在帮助初学者理解并实践Dubbo框架的基本用法。Dubbo是阿里巴巴开源的一款高性能、轻量级的Java RPC(远程过程调用)框架,它提供了服务治理、负载均衡、...

    Springboot-helloworld案例

    创建独立的 Spring 应用程序  嵌入的 Tomcat,无需部署 WAR 文件  简化 Maven 配置  自动配置 Spring  提供生产就绪型功能,如指标,健康检查和外部配置  开箱即用,没有代码生成,也无需 XML 配置。

    springBoot-Test (一) Hello world

    在"springBoot-Test (一) Hello world"这个主题中,我们将探讨SpringBoot的起步过程以及如何实现一个简单的“Hello World”程序。 首先,我们需要在项目中引入SpringBoot的起步依赖(Starter Dependency)。...

    springboot-demo-helloworld-jetty.rar

    SringBoot的概述# SpringBoot解决上述Spring的缺点SpringBoot对上述Spring的缺点进行的改善和优化,基于约定优于配置的思想,可以让开发人员不必在配置与逻辑业务之间进行思维的切换,全身心的投入到逻辑业务的代码...

    Dubbo新手入门实例HelloWorld(zookeeper)源码

    在本实例中,“Dubbo新手入门实例HelloWorld(zookeeper)”旨在帮助初学者了解如何结合Dubbo和Zookeeper创建一个简单的服务提供者和消费者。首先,我们需要理解这两个关键组件: 1. **Dubbo**: Dubbo的核心功能包括...

    springboot HelloWorld

    总结来说,SpringBoot HelloWorld是一个简单的入门示例,展示了如何利用Spring Boot快速构建一个运行的Web应用。通过这个示例,开发者能够理解Spring Boot的核心概念,包括自动配置、依赖注入和RESTful API的创建。...

    SpringBoot入门工程案例Eclipse工程代码

    这个入门工程案例是针对Eclipse IDE设计的,它可以帮助初学者快速上手SpringBoot,理解其核心概念和工作原理。 1. **SpringBoot核心** SpringBoot的核心特点是自动配置,它通过`@SpringBootApplication`注解启动...

    springboot-helloworld202010211506.zip

    springboot带多个环境配置文件小栗子,springboot带多个环境配置文件小栗子,springboot带多个环境配置文件小栗子,关于使用看https://blog.csdn.net/wang0907/article/details/109198198

    Web项目Springboot-HelloWorld-war包

    利用springboot开发的简易helloworld的war包,供测试使用

    JNI入门之HelloWorld(一)

    ### JNI入门之HelloWorld(一)详解 #### 一、引言 JNI(Java Native Interface)是Java平台标准的一部分,它允许Java代码与其他语言写的代码进行交互。JNI接口提供了若干公共服务,并为Java虚拟机和本机应用程序或...

    hibernate_HelloWorld

    【hibernate_HelloWorld】项目是一个入门级的教程,旨在帮助初学者了解并实践Hibernate框架的基本用法。Hibernate是一个强大的Java对象关系映射(ORM)框架,它简化了数据库与Java应用程序之间的交互,使开发者可以...

    基于Maven的SpringBoot项目之Helloworld

    在本文中,我们将深入探讨如何基于Maven构建一个SpringBoot项目,并通过解决常见的导入问题来实现"Hello, World!"的应用。SpringBoot是一个流行的Java框架,它简化了Spring应用程序的开发,而Maven则是一个强大的...

Global site tag (gtag.js) - Google Analytics