mirror of
https://github.com/judasn/IntelliJ-IDEA-Tutorial.git
synced 2025-12-08 19:05:55 +00:00
2016-04-21新增 Maven 的单模块之 Spring MVC + Spring + Spring Data JPA 项目(基于 IntelliJ IDEA)文章
This commit is contained in:
parent
4343c8dc01
commit
09542457a2
19
README.md
19
README.md
@ -41,15 +41,16 @@
|
||||
- [22.Eclipse 的 Java Web 项目环境搭建](eclipse-java-web-project-introduce.md)
|
||||
- [23.Maven 项目介绍](maven-project-introduce.md)
|
||||
- [24.Maven 的单模块 / 多模块之 Spring MVC + Spring + Mybatis 项目讲解(重点)](maven-java-web-project-introduce.md)
|
||||
- [25.Debug 讲解](debug-introduce.md)
|
||||
- [26.重构讲解](refactor-introduce.md)
|
||||
- [27.数据库管理工具](database-introduce.md)
|
||||
- [28.IntelliJ IDEA 常用设置-1](settings-introduce-1.md)
|
||||
- [29.IntelliJ IDEA 常用设置-2](settings-introduce-2.md)
|
||||
- [30.IntelliJ IDEA 常用快捷键讲解(Win+Linux)](keymap-introduce.md)
|
||||
- [31.IntelliJ IDEA 常用快捷键讲解(Mac)](keymap-mac-introduce.md)
|
||||
- [32.IntelliJ IDEA 的 Java 热部署插件 JRebel 安装及使用](jrebel-setup.md)
|
||||
- [33.本教程总结](this-tutorial-the-end.md)
|
||||
- [25.Maven 的单模块之 Spring MVC + Spring + Spring Data JPA 项目(基于 IntelliJ IDEA)](maven-java-web-project-introduce2.md)
|
||||
- [26.Debug 讲解](debug-introduce.md)
|
||||
- [27.重构讲解](refactor-introduce.md)
|
||||
- [28.数据库管理工具](database-introduce.md)
|
||||
- [29.IntelliJ IDEA 常用设置-1](settings-introduce-1.md)
|
||||
- [30.IntelliJ IDEA 常用设置-2](settings-introduce-2.md)
|
||||
- [31.IntelliJ IDEA 常用快捷键讲解(Win+Linux)](keymap-introduce.md)
|
||||
- [32.IntelliJ IDEA 常用快捷键讲解(Mac)](keymap-mac-introduce.md)
|
||||
- [33.IntelliJ IDEA 的 Java 热部署插件 JRebel 安装及使用](jrebel-setup.md)
|
||||
- [34.本教程总结](this-tutorial-the-end.md)
|
||||
|
||||
## 联系(Contact)
|
||||
|
||||
|
||||
21
TOC.md
21
TOC.md
@ -21,13 +21,14 @@
|
||||
- [21.插件讲解](plugins-settings.md)
|
||||
- [22.Eclipse 的 Java Web 项目环境搭建](eclipse-java-web-project-introduce.md)
|
||||
- [23.Maven 项目介绍](maven-project-introduce.md)
|
||||
- [24.Maven 的单模块 / 多模块之 Spring MVC + Spring + Mybatis 项目讲解](maven-java-web-project-introduce.md)
|
||||
- [25.Debug 讲解](debug-introduce.md)
|
||||
- [26.重构讲解](refactor-introduce.md)
|
||||
- [27.数据库管理工具](database-introduce.md)
|
||||
- [28.IntelliJ IDEA 常用设置-1](settings-introduce-1.md)
|
||||
- [29.IntelliJ IDEA 常用设置-2](settings-introduce-2.md)
|
||||
- [30.IntelliJ IDEA 常用快捷键讲解(Win+Linux)](keymap-introduce.md)
|
||||
- [31.IntelliJ IDEA 常用快捷键讲解(Mac)](keymap-mac-introduce.md)
|
||||
- [32.IntelliJ IDEA 的 Java 热部署插件 JRebel 安装及使用](jrebel-setup.md)
|
||||
- [33.本教程总结](this-tutorial-the-end.md)
|
||||
- [24.Maven 的单模块 / 多模块之 Spring MVC + Spring + Mybatis 项目讲解(重点)](maven-java-web-project-introduce.md)
|
||||
- [25.Maven 的单模块之 Spring MVC + Spring + Spring Data JPA 项目(基于 IntelliJ IDEA)](maven-java-web-project-introduce2.md)
|
||||
- [26.Debug 讲解](debug-introduce.md)
|
||||
- [27.重构讲解](refactor-introduce.md)
|
||||
- [28.数据库管理工具](database-introduce.md)
|
||||
- [29.IntelliJ IDEA 常用设置-1](settings-introduce-1.md)
|
||||
- [30.IntelliJ IDEA 常用设置-2](settings-introduce-2.md)
|
||||
- [31.IntelliJ IDEA 常用快捷键讲解(Win+Linux)](keymap-introduce.md)
|
||||
- [32.IntelliJ IDEA 常用快捷键讲解(Mac)](keymap-mac-introduce.md)
|
||||
- [33.IntelliJ IDEA 的 Java 热部署插件 JRebel 安装及使用](jrebel-setup.md)
|
||||
- [34.本教程总结](this-tutorial-the-end.md)
|
||||
23
maven-java-web-project-introduce2.md
Normal file
23
maven-java-web-project-introduce2.md
Normal file
@ -0,0 +1,23 @@
|
||||
# Maven 的单模块 / 多模块之 Spring MVC + Spring + Spring Data JPA 项目(基于 IntelliJ IDEA)
|
||||
|
||||
|
||||
## 初衷
|
||||
|
||||
- 本章展示 IntelliJ IDEA 高度集成化的效果,降低 IntelliJ IDEA 入门时间
|
||||
- 欢迎来到 IntelliJ IDEA 世界
|
||||
|
||||
|
||||
## 项目
|
||||
|
||||
- 项目地址:<https://github.com/judasn/Basic-Single-Module-SSJPA>
|
||||
|
||||
|
||||
## 开发环境
|
||||
|
||||
- JDK 7(理论上支持 JDK 6、JDK 7、JDK 8)
|
||||
- Mysql 5.6
|
||||
- Maven 3.1.1
|
||||
- Tomcat 7
|
||||
- Git 2.7.0.2-64-bit
|
||||
- IntelliJ IDEA 2016.1.1
|
||||
- 所有编码:UTF-8
|
||||
Loading…
x
Reference in New Issue
Block a user