我是靠谱客的博主 畅快大门,最近开发中收集的这篇文章主要介绍IDEA spring-boot jpa jsp 框架搭建(一)spring-boot jpa jsp 框架搭建(一),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

spring-boot jpa jsp 框架搭建(一)

开发工具及其环境

1.开发工具 IntelliJ IDEA 2017.2.6
2. 开发环境 JDK 1.8
3. maven

spring-boot 框架搭建

1.创建spring-boot项目
打开IDEA开发工具,点击左上角File->New->Project
这里写图片描述
选择JDK版本,然后Next
这里写图片描述
输入Group Artifact 等信息,然后Next
这里写图片描述
添加依赖,本次spring-boot框架搭建选用的是mysql数据库所以需要勾选的依赖有:web MySQL JPA
这里写图片描述
这里写图片描述
最后一步,确认一下项目名称,指定保存地址,Finish
这里写图片描述
项目创建完成!
这里写图片描述
在idea里面配置一下本地maven,打开setting,搜索maven,配置成本地的maven
这里写图片描述

编辑spring-boot配置文件application.properties

配置server,在application.properties添加
server.port=80
配置数据库
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/fvshop?useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

#服务器端口
server.port=80
##数据库连接信息
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/fvshop?useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

分包,测试

  1. 新建web.controller包
    这里写图片描述
  2. 新建IndexController类
    这里写图片描述
  3. 书写controller,在IndexController里面写:
package cn.itlaobing.web.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
//此注解默认返回json数据
@RestController
public class IndexController {
@RequestMapping("index")
public String index(){
return "hello world";
}
}

4.启动spring-boot

这里写图片描述
这里写图片描述

5.访问,在游览器里面输入 localhost/index

这里写图片描述

今天的教程暂时到这里,余下教程持续更新,代码我已上传到我的csdn,欢迎随时下载,有问题随时私聊。。。

持续更新中。。。

最后

以上就是畅快大门为你收集整理的IDEA spring-boot jpa jsp 框架搭建(一)spring-boot jpa jsp 框架搭建(一)的全部内容,希望文章能够帮你解决IDEA spring-boot jpa jsp 框架搭建(一)spring-boot jpa jsp 框架搭建(一)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部