Springboot快速上手- 第二篇 helloWord走起
同步滚动:开
1 基础工程创建
1:创建一个maven工程
2:加入parent
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
3:加入启动依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
4:设置properties
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>com.cc.Application</start-class>
</properties>
5:配置springboot 插件
<build>
<finalName>springbootstudy</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
6:开发Controller
@Controller
@RequestMapping("/hello")
public class FirstController {
@RequestMapping("/abc")
@ResponseBody
public String abc() {
System.out.println("now in FirstController.abc");
return "Hello World!";
}
}
7:启动类
@SpringBootApplication
public class App {
public static void main(String[] args) {
//负责启动引导应 用程序
SpringApplication.run(App.class, args);
}
}
8:启动运行
先运行启动类,然后在浏览器输入:<u>http://localhost:8080/hello/abc</u>
@SpringBootApplication:开启组件扫描和自动配置,
实际 上,@SpringBootApplication将三个有用的注解组合在了一起:
Spring的@Configuration:标明该类使用Spring基于Java的配置
Spring的@ComponentScan:启用组件扫描
Spring Boot的@EnableAutoConfiguration:开启Spring Boot自动配置
2 加入数据层
1:环境设置
(1)加入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.43</version>
</dependency>
(2)在数据库中创建一个库springbootstudy,同时建一个表tbl_user,有如下字段:uuid、name、age
(3)配置数据源、配置jpa对hibernate的支持,在resources文件夹中建立一个application.properties文件,基本配置如下:
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/springbootstudy?useUnicode=true&characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.max-active=20
spring.datasource.max-idle=8
spring.datasource.min-idle=8
spring.datasource.initial-size=10
spring.jpa.database=MySQL
spring.jpa.show-sql=true
spring.jpa.generate-ddl=false
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.use_sql_comments=false
spring.hibernate.packageScan=com.cc
spring.jta.transaction-manager-id=transactionManager
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
2:添加user模块,先写vo
3:添加dao及实现,DAO接口示例如下:
public interface UserDAO<M extends UserModel> {
public String create(M m);
public void update(M m);
public void delete(String uuid);
public M getByUuid(String uuid);
public List<M> getAll();
}
4:添加java配置
为了支持直接注入Hibernate的SessionFactory,建立一个H4Conf的类,采用java配置的方式:
@Configuration
public class H4Conf {
@Bean
public SessionFactory sessionFactory(HibernateEntityManagerFactory hemf) {
return hemf.getSessionFactory();
}
}
添加Service及实现
添加Controller实现
3 添加页面,使用ThymeLeaf
1:环境构建
(1)在application.properties中添加:
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates
(2)添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2:在resources下面添加templates,在templates下面添加user文件夹,下面用来存放页面
3:使用ThymeLeaf开发的页面,比如userAdd.html,示例如下:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>hello</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<form th:action="@{/user/add}" method="post">
<table>
<tr>
<td>uuid</td>
<td><input type="text" name="uuid" id="uuid"/></td>
</tr>
<tr>
<td>name</td>
<td><input type="text" name="name" id="name"/></td>
</tr>
<tr>
<td>age</td>
<td><input type="text" name="age" id="age"/></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="保存"/></td>
</tr>
</table>
</form>
</body>
</html>
4 启动运行
http://localhost:8080/user/toList
相关推荐
如嵌入式服务器、安全、指标,健康检测、外部配置等SpringBoot不是对Spring功能上的增强,而是提供了一种快速使用Spring的方式# SpringBoot的核心功能起步依赖 起步依赖本质上是一个Maven项目对象模型(Project ...
### Spring Boot HelloWorld 实现流程详解 #### 一、Spring Boot简介 Spring Boot 是由 Pivotal 团队提供的全新框架,其设计目标是简化新...通过这些步骤,读者可以轻松上手Spring Boot,并快速构建自己的Web应用。
2. **HelloWorld示例**: 假设我们有一个简单的JavaBean,名为`HelloWorld.java`: ```java public class HelloWorld { public String sayHello() { return "Hello, World!"; } } ``` 我们需要在`dwr.xml`...
2. **创建SpringBoot项目**:首先,我们需要一个SpringBoot项目的基础结构。通常,我们可以使用Spring Initializr(https://start.spring.io/)在线生成项目骨架,或者通过Maven或Gradle的插件创建。在这个...
#### 二、JPDL语言解析 JPDL是JBPM中用于定义业务流程的语言。它是一种基于XML的描述语言,可以用来定义流程中的各种元素,如活动(Activity)、决策(Decision)、转换(Transition)等。 - **活动(Activity)**:代表...
在IDEA中,你可以通过“New Project”选择“Spring Initializr”来快速初始化一个Spring Boot项目。在Initializr界面中,选择所需的Java版本、项目类型、依赖项等。为了实现“Hello, World!”功能,你需要至少包含...
SpringBoot HelloWorld 是初学者入门 SpringBoot 的经典案例,它展示了如何快速搭建一个简单的SpringBoot应用。SpringBoot是由Pivotal团队开发的,旨在简化Spring应用的初始搭建以及开发过程。其核心特性包括自动...
它集成了大量常用的第三方库配置,如JPA、Thymeleaf、WebSocket等,使得开发者可以“零配置”快速启动项目。在本"springboot空白项目自用"中,我们可以理解为这是一个基础的SpringBoot项目模板,用于个人或团队的...
总结来说,**hibernate-annotation-helloworld**项目是一个基础的教程,帮助开发者快速理解并开始使用Hibernate的注解方式来处理数据库操作。通过这个示例,你可以学到如何创建实体类、设置注解、配置数据库连接以及...
总结一下,这个“springboot2.0helloworld”项目展示了Spring Boot 2.0如何快速构建一个简单的Web应用。它利用了Spring Boot的自动配置、内嵌式服务器和约定优先的原则,让开发者能专注于业务逻辑而不是基础设施的...
使用这个工程模板,开发者可以快速上手ESP8266开发,理解如何与SDK交互,并在此基础上扩展自己的物联网应用。例如,可以添加更多的传感器数据采集、网络通信功能,甚至构建复杂的云端交互应用。随着对SDK和硬件理解...
vuepro入门案例-Todolist(helloword级别) 项目难点: X.vue实例中template: '<App/>',这样写是什么意思 X.什么是localStorage、sessionStorage; X.watch:{}用法;
FISCO BCOS JAVA SDK(以HelloWorld合约为例)源代码
它集成了大量常用的第三方库配置,如JPA、Thymeleaf、WebSocket等,使得开发者可以“零配置”快速启动项目。 在SpringBoot的学习过程中,源码分析是非常重要的环节。通过阅读源码,我们可以深入理解其内部工作原理...
1_helloword springboot入门项目,实现了简单的web服务功能 2_thymeleaf 整合thymeleaf模板引擎,在页面渲染后台数据 3_simplifycode 简化一些繁琐的配置 4_jta-atomikos 集成jta-atomikos 实现分布式事务 5_...
进入第二章,我们讨论如何使用SiteMesh来修饰Struts2应用的页面。SiteMesh是一个页面布局和装饰框架,它的目的是为整个工程提供一致的外观和感觉。在Struts2中整合SiteMesh,你需要将sitemesh-2.3.jar和Struts2-...
包含通过spring框架,对web项目的所有基本功能使用,包括过滤器、定时器、url访问、redis集成、redis...项目导入sts(集成了springboot开发插件的eclipse)后,直接通过springboot启动运行就可以。jdk必须1.8及以上
【SpringMVC 框架入门详解】 SpringMVC 是 Spring 框架的一个模块,主要负责处理 Web 请求。...此外,结合 Spring Boot,你可以更快速地搭建和配置 SpringMVC 项目,减少 XML 配置,提高开发效率。
SpringBoot 之 HelloWord 快速搭建一个 Web 项目 本文主要介绍了 Spring Boot 之 HelloWord 快速搭建一个 Web 项目的过程,从 Spring Boot 的背景到环境准备、创建项目、pom 文件配置等方面进行了详细的介绍。 ...
helloword