【 Spring Boot 开发实战】10 分钟快速构建一个自己的技术文章博客
【 Spring Boot 开发实战】10 分钟快速构建一个自己的技术文章博客1.图形界面效果image.pngimage.pngimage.png2.工程源代码image.pnghttps://github.com/KotlinSpringBoo...
·
【 Spring Boot 开发实战】10 分钟快速构建一个自己的技术文章博客
1.图形界面效果
2.工程源代码
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
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献12条内容
所有评论(0)