<一> 采用技术
- Gradle
- SpringBoot,
- H2 database, 作为数据库
- thymeleaf, 作为前台展示
<二> 要做的东西
一个简易的联系薄,能够插入联系人,以及展示联系人。
ps:参考了<<spring in action>>
<三> 利用Gradle 创建SpringBoot project
- 假如你 Eclipse 中安装有Gradle 插件,你可以利用该插件建项目
- 如果不使用Eclipse 的 Gradle 插件,可以用命令行操作:
- mkdir MySpringBoot
- cd MySpringBoot
- gradle init
将会出现如下的目录树:
- 将该项目导入Eclipse 中
- 编辑 build.gradle 文件:
buildscript { repositories { mavenLocal() mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE") } } apply plugin: ‘java‘ apply plugin: ‘spring-boot‘ jar { baseName = ‘myspringboot‘ version = ‘0.1.0‘ } repositories { mavenLocal() mavenCentral() } dependencies { compile("org.springframework.boot:spring-boot-starter-web") compile("org.springframework.boot:spring-boot-starter-jdbc") compile("org.thymeleaf:thymeleaf-spring4") compile("com.h2database:h2") } task wrapper(type: Wrapper) { gradleVersion = ‘2.0‘ }
==> 于是一个采用Gradle的project 创建了
<四> 填充内容:
1.目标:
2.填充内容:
模型:Contact.java
控制器:ContactController.java
数据仓库:ContactRepository.java
3.完成前端页面
<五> 运行:
时间: 2024-11-05 11:33:04