pom.xml
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>5.2.4</version>
<configuration>
<url>jdbc:h2:~/community</url>
<user>sa</user>
<password>123</password>
</configuration>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.199</version>
</dependency>
</dependencies>
</plugin>
V1__Create_user_table.sql
CREATE TABLE USER
{
ID int AUTO_INCREMENT PRIMARY KEY NOT NULL,
ACCOUNT_ID VARCHAR(100),
NAME VARCHAR(50),
TOKEN VARCHAR(36),
GMT_CREATE BIGINT,
GMT_MODIFIED BIGINT
};
publish.html
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>发布 - 码匠社区</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="css/community.css"/>
<script src="js/bootstrap.min" type="javascript"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">码匠社区</span>
</button>
<a class="navbar-brand" href="#">码匠社区</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<form class="navbar-form navbar-left">
<div class="form-group">
<input type="text" class="form-control" placeholder="搜索问题">
</div>
<button type="submit" class="btn btn-default">搜索</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown" th:if="${session.user != null}">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
aria-expanded="false" th:text="${session.user.getName()}"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">消息中心</a></li>
<li><a href="#">个人资料</a></li>
<li><a href="#">退出登录</a></li>
</ul>
</li>
<li th:if="${session.user == null}">
<a href="https://github.com/login/oauth/authorize?client_id=2c28fc64c9407f52d7c4&redirect_uri=http://localhost:8080/callback&scope=user&state=1">登录</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid main">
<div class="row">
<div class="col-lg-9 col-md-12 col-sm-12 col-xs-12">
<h2><span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 发起</h2>
<form action="">
<div class="form-group">
<label for="title">问题标题(简单扼要)</label>
<input type="text" class="form-control" id="title" name="title" placeholder="问题标题……">
</div>
<div class="form-group">
<label for="title">问题补充(必填,请参照右侧提示)</label>
<textarea name="description" id="description" class="form-control" cols="30" rows="10"></textarea>
</div>
<div class="form-group">
<label for="title">添加标签:</label>
<input type="text" class="form-control" id="tag" name="tag" placeholder="输入标签,以,分隔">
</div>
<button type="submit" class="btn btn-success btn-publish">发布</button>
</form>
</div>
<div class="col-lg-3 col-md-12 col-sm-12 col-xs-12">
<h3>发起问题指南</h3>
* 问题标题:<br>
* 问题补充:<br>
* 选择标签:<br>
</div>
</div>
</div>
</body>
</html>
community.css
body {
background-color: #efefef;
}
.main {
background-color: white;
margin: 30px;
}
.btn-publish {
float: right;
margin-bottom: 15px;
}