-
<big>技术选型</big>
参考:http://keeganlee.me/post/practice/20161006- 语言 : Java (Node / Java)
- IDE : IntelliJ IDEA (IntelliJ IDEA / Eclipse / NetBeans)
- Web框架 : Spring Boot (Spring MVC / Spring Boot / JSF / Struts / ..)
- 构建工具 : Gradle (Maven / Gradle / Ant)
- 数据库 : MySQL [配合Workbench食用]
- 服务器 : Tomcat
-
<big>项目构建</big>
- IDEA->新建项目-> Spring Initializr -> Gradle Project -> Spring依赖库Web&MySQL
- 配置 application.properties
在 application.properties 中添加如下内容:
spring.datasource.url=jdbc:mysql://localhost:3306/coderx
spring.datasource.username=root
spring.datasource.password=password4root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
其中,coderx 是我已在本地建立的本项目的数据库。username 设置为 root 用户,而 password 就是 root 用户的密码了。
设置好数据源之后,为了操作方便,还需要再引入持久层框架。Spring也有提供了JDBC,需要引入jdbc的依赖包,主要就是通过JdbcTemplate建立与数据库的连接。不过,更主流的方案是引入MyBatis,我也倾向于使用MyBatis。
引入MyBatis也很简单,打开项目的 build.gradle 文件,在 dependencies 添加 mybatis-spring-boot-starter 依赖,加完依赖之后的 dependencies 如下:
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
runtime('mysql:mysql-connector-java')
testCompile('org.springframework.boot:spring-boot-starter-test')
compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.1.1")
}