gpt4 book ai didi

搭建Springboot框架并添加JPA和Gradle组件的方法

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章搭建Springboot框架并添加JPA和Gradle组件的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

开发工具:intellij idea 。

所需开发环境:jdk gradle 。

1、新建springboot项目 。

1.new project 。

搭建Springboot框架并添加JPA和Gradle组件的方法

2. spring initializr 。

搭建Springboot框架并添加JPA和Gradle组件的方法

3. 填写项目组织 。

group : 项目属于哪个组,这个组往往和项目所在的组织或公司存在关联 。

artifact : 当前项目在组中唯一的id 。

type : jar包管理所使用的工具 。

lauguage : 开发语言 。

packageing : 打包方式 。

java version : jdk 的版本号 。

version :项目当前的版本号 。

搭建Springboot框架并添加JPA和Gradle组件的方法

4.选择所需要添加的组件 。

搭建Springboot框架并添加JPA和Gradle组件的方法

搭建Springboot框架并添加JPA和Gradle组件的方法

5. 选择项目的保存位置 。

搭建Springboot框架并添加JPA和Gradle组件的方法

2、目标代码组织 。

搭建Springboot框架并添加JPA和Gradle组件的方法

1. 配置数据库 。

resource目录下的application.properties 。

?
1
2
3
4
spring.jpa.hibernate.ddl-auto=create-drop
spring.datasource.url=jdbc:mysql: //localhost:3306/test
spring.datasource.username=root
spring.datasource.password=cueb

2. 修改build.gradle文件 。

将34行的providedruntime修改为compile,否者项目无法正常启动 。

providedruntime :在运行时提供tomcat jar包 。

compile :在编译时提供tomcat jar包 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
buildscript {
     ext {
         springbootversion = '1.5.7.release'
     }
     repositories {
         mavencentral()
     }
     dependencies {
         classpath( "org.springframework.boot:spring-boot-gradle-plugin:${springbootversion}" )
     }
}
 
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
 
group = 'com.example'
version = '0.0.1-snapshot'
sourcecompatibility = 1.8
 
repositories {
     mavencentral()
}
 
configurations {
     providedruntime
}
 
dependencies {
     compile( 'org.springframework.boot:spring-boot-starter-data-jpa' )
     compile( 'org.springframework.boot:spring-boot-starter-web' )
     runtime( 'mysql:mysql-connector-java' )
     compile( 'org.springframework.boot:spring-boot-starter-tomcat' )
     testcompile( 'org.springframework.boot:spring-boot-starter-test' )
}

3. 新建controller 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.example.demo.control;
 
 
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;
 
@restcontroller
public class testcontroller {
 
   @requestmapping (value = "" )
   public string test(){
     return "hello cueb" ;
   }
}

4. 新建model 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.example.demo.model;
 
import javax.persistence.entity;
import javax.persistence.generatedvalue;
import javax.persistence.generationtype;
import javax.persistence.id;
 
@entity
public class user {
   @id
   @generatedvalue (strategy= generationtype.auto)
   int id;
 
   public int getid() {
     return id;
   }
 
   public void setid( int id) {
     this .id = id;
   }
 
   private string name;
 
   public string getname() {
     return name;
   }
 
   public void setname(string name) {
     this .name = name;
   }
}

3、部署运行 。

1. debug 启动 。

搭建Springboot框架并添加JPA和Gradle组件的方法

2. 数据库user表新建成功 。

搭建Springboot框架并添加JPA和Gradle组件的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://blog.csdn.net/jxq0816/article/details/78240555 。

最后此篇关于搭建Springboot框架并添加JPA和Gradle组件的方法的文章就讲到这里了,如果你想了解更多关于搭建Springboot框架并添加JPA和Gradle组件的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com