【 Spring Boot 开发实战】10 分钟快速构建一个自己的技术文章博客

1.图形界面效果

img_4169c5728bb2b70bdedf424732d32a4e.png
image.png
img_e70ca8dea9d54431cc28d2e00e8fe73c.png
image.png
img_e9242d811b2a1c3e1f20a7c7ddcd26be.png
image.png

2.工程源代码

img_51367474b15719442196f6a9c269a166.png
image.png

https://github.com/KotlinSpringBoot/saber

3.数据库结构

package com.light.saber.model

import com.fasterxml.jackson.annotation.JsonFormat
import java.util.*
import javax.persistence.*

@Entity
class Knowledge {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    var id: Long = 0

    @Column(length = 100, unique = true)
    var title = ""
    @Lob
    var answer = ""

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "GMT+8")
    var gmtCreate = Date()
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "GMT+8")
    var gmtModified = Date()
}

新书上架:《Spring Boot 开发实战》

— 基于 Kotlin + Gradle + Spring Boot 2.0 的企业级服务端开发实战

京东下单链接

https://item.jd.com/31178320122.html

天猫下单链接

https://detail.tmall.com/item.htm?id=574928877711

img_36baccc5fd444e3ec697843dcb9248ac.jpe
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐