仿极简图床

一、使用技术
后端:Spring Boot+Spring Data JPA+RESTful API+swagger
前端:VUE.js+VUE cli+bootstrap+jQuery+axios
二、效果图


极简主页.png
某个相册.png

三、源码
后端代码


项目目录.png

相册类
@Entity
@Data
public class Album {
@Id
@GeneratedValue
private Integer id;

private String albumCover;

private String albumTitle;

private String albumDescription;

private Integer likes;

}
某个相册内容类
@Entity
@Data
public class AlbumCatena {
@Id
@GeneratedValue
private Integer id;
private String picture;
private String title;
private Integer album_id;

}
相册接口
public interface AlbumRepository extends JpaRepository<Album,Integer>{
@Query("select u from Album u order by u.likes desc")
List<Album>findHot();

List<Album>findAll();

}
某个相册内容接口

public interface AlbumCatenaRepository extends JpaRepository<AlbumCatena,Integer> {
AlbumCatena findAlbumCatenaById(Integer id);

@Query("select u from AlbumCatena u where u.album_id=?1")
List<AlbumCatena>findAlbumCatenas(Integer id);

}
相册service
public interface AlbumService {
List<Album> getall();
}
某个相册内容service
public interface AlbumCatenaService {
List<AlbumCatena>findAlbumCatenas(Integer id);
}
相册service实现类
@Service
public class AlbumImpl implements AlbumService {
@Resource
private AlbumRepository albumRepository;

@Override
public List<Album> getall() {
    return albumRepository.findAll();
}

}
某个相册内容service实现类
@Service
public class AlbumCatenaImpl implements AlbumCatenaService {
@Resource
private AlbumCatenaRepository albumCatenaRepository;
@Override
public List<AlbumCatena> findAlbumCatenas(Integer id) {
return albumCatenaRepository.findAlbumCatenas(id);
}
}
给前端提供接口
@RestController
@CrossOrigin
@RequestMapping(value = "/books")
public class BoController {
@Resource
private AlbumService albumService;
@Resource
private AlbumCatenaService albumCatenaService;

@GetMapping("/album")
public List<Album>getallalbum(){
    return albumService.getall();
}

@GetMapping("/{id}")
public List<AlbumCatena>getcatenas(@PathVariable Integer id){
    System.out.println(albumCatenaService.findAlbumCatenas(id));
    return albumCatenaService.findAlbumCatenas(id);
}

}
前端代码
相册页面
<template>
<div>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading">我的相册</h1>
<p class="lead text-muted">因为还要走很长的路,所以要心无旁骛地望着远方</p >
<p>
<a href="" class="btn btn-primary my-2">查看更多</a >
</p >
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-md-4" v-for="album in albums" :key="album.id">
<div class="card mb-4 box-shadow">
<img class="card-img-center" :src="album.albumCover"/>
<div class="card-body">
<p class="card-text">{{album.albumDescription}}</p >
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<router-link tag="a" :to="{ path:'/albumcatena',query:{id:album.id}}">
<button type="button" class="btn btn-sm btn-outline-secondary">查看</button>
</router-link>
<button type="button" class="btn btn-sm btn-outline-secondary">关注</button>
</div>
<small class="text-muted">数量:{{album.likes}}</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>

</div>

</template>

<script>
import 'bootstrap/dist/css/bootstrap.css'
import 'jquery/dist/jquery.min'
import 'bootstrap/dist/js/bootstrap.min'
export default {
data: function () {
return {
albums: []
}
},
created () {
var _this = this
this.$http.get('http://localhost:8080/books/album')
.then(function (response) {
_this.albums = response.data
})
},
name: 'Album'
}

</script>

<style scoped>
img{
width: 348px;
height: 250px;
}
</style>
某个相册内容页面
<template>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-md-4" v-for="albumcatena in albumcatenas" :key="albumcatena.id">
<div class="card mb-4 box-shadow">
<img class="card-img-center" :src="albumcatena.picture"/>
<div class="card-body">
<p class="card-text">{{albumcatena.title}}</p >
</div>
</div>
</div>
</div>
</div>
</div>
</template>

<script>
import 'bootstrap/dist/css/bootstrap.css'
import 'jquery/dist/jquery.min'
import 'bootstrap/dist/js/bootstrap.min'
export default {
data: function () {
return {
albumcatenas: []
}
},
created () {
this.id = this.route.query.id var _this = this this.http.get('http://localhost:8080/books/' + this.id)
.then(function (response) {
_this.albumcatenas = response.data
})
},
name: 'AlbumCatena'
}

</script>

<style scoped>
img{
height: 200px;
}
</style>

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,585评论 18 139
  • 1 Webpack 1.1 概念简介 1.1.1 WebPack是什么 1、一个打包工具 2、一个模块加载工具 3...
    Kevin_Junbaozi阅读 6,629评论 0 16
  • 失败是沙,成功是金,生活就是沙里淘金。拿破仑老人家也曾说过,“人生之光荣不在永不失败,而在能屡仆屡起” 面对这生活...
    有恒读书阅读 253评论 0 2
  • 我是林小影,这是我参与原创文章之第15篇。 温暖|阳光明媚的周末,3月的最后一天,愚人节的前一天,泉州市熊猫父母成...
    林小影Lisa阅读 301评论 0 0
  • (一) 小阿不一直有个梦想,去一片从未到过的森林,找到和自己一样只吃草的狼。 听阿不说要离开,阿不爸只是淡淡地说了...
    a6354fdd656b阅读 3,550评论 0 0