Merge pull request #103 from rymcu/format

🎨 代码优化
This commit is contained in:
ronger 2022-09-03 14:48:20 +08:00 committed by GitHub
commit 95c1ae4018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
184 changed files with 1925 additions and 3411 deletions

View File

@ -97,4 +97,9 @@ forest[ˈfôrəst]n.森林)是一款现代化的知识社区项目,使
## 鸣谢 ## 鸣谢
- 感谢 `JetBrains` 对本项目的帮助,为作者提供了开源许可版 `JetBrains` 全家桶 - 感谢 `JetBrains` 对本项目的帮助,为作者提供了开源许可版 `JetBrains` 全家桶
![JetBrains](src/main/resources/static/jb_beam.svg) ![JetBrains](src/main/resources/static/jb_beam.svg)
## ⭐ Star 历史
[![Stargazers over time](https://starchart.cc/rymcu/forest.svg)](https://starchart.cc/rymcu/forest)

98
pom.xml
View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.5.RELEASE</version> <version>2.7.2</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
<groupId>com.rymcu</groupId> <groupId>com.rymcu</groupId>
@ -17,7 +17,7 @@
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<lucene.version>8.11.1</lucene.version> <lucene.version>8.11.2</lucene.version>
</properties> </properties>
<dependencies> <dependencies>
@ -40,6 +40,7 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mybatis.spring.boot</groupId> <groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId> <artifactId>mybatis-spring-boot-starter</artifactId>
@ -49,6 +50,7 @@
<dependency> <dependency>
<groupId>mysql</groupId> <groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId> <artifactId>mysql-connector-java</artifactId>
<version>8.0.30</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -74,8 +76,19 @@
<groupId>com.vaadin.external.google</groupId> <groupId>com.vaadin.external.google</groupId>
<artifactId>android-json</artifactId> <artifactId>android-json</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/net.minidev/json-smart -->
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.4.8</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId> <artifactId>spring-boot-starter-aop</artifactId>
@ -84,43 +97,37 @@
<dependency> <dependency>
<groupId>tk.mybatis</groupId> <groupId>tk.mybatis</groupId>
<artifactId>mapper</artifactId> <artifactId>mapper</artifactId>
<version>4.1.5</version> <version>4.2.1</version>
</dependency>
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency> </dependency>
<!-- pagehelper --> <!-- pagehelper -->
<dependency> <dependency>
<groupId>com.github.pagehelper</groupId> <groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId> <artifactId>pagehelper</artifactId>
<version>5.3.0</version> <version>5.3.1</version>
</dependency> </dependency>
<!-- fastjson --> <!-- fastjson -->
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>1.2.83</version> <version>2.0.12</version>
</dependency> </dependency>
<!-- shiro权限控制框架 --> <!-- shiro权限控制框架 -->
<dependency> <dependency>
<groupId>org.apache.shiro</groupId> <groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId> <artifactId>shiro-spring</artifactId>
<version>1.7.1</version> <version>1.9.1</version>
</dependency>
<!-- shiro-redis -->
<dependency>
<groupId>org.crazycake</groupId>
<artifactId>shiro-redis</artifactId>
<version>3.2.3</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.shiro</groupId> <groupId>commons-collections</groupId>
<artifactId>shiro-core</artifactId> <artifactId>commons-collections</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
<!--apache相关依赖--> <!--apache相关依赖-->
<dependency> <dependency>
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
@ -151,7 +158,7 @@
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId> <artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.8</version> <version>1.2.11</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
@ -163,7 +170,7 @@
<dependency> <dependency>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId> <artifactId>log4j-to-slf4j</artifactId>
<version>2.17.1</version> <version>2.18.0</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
@ -174,7 +181,7 @@
<dependency> <dependency>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId> <artifactId>log4j-api</artifactId>
<version>2.17.1</version> <version>2.18.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
@ -185,11 +192,6 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId> <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency> </dependency>
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId> <artifactId>spring-boot-starter-websocket</artifactId>
@ -197,26 +199,7 @@
<dependency> <dependency>
<groupId>org.jodd</groupId> <groupId>org.jodd</groupId>
<artifactId>jodd-http</artifactId> <artifactId>jodd-http</artifactId>
<version>6.2.1</version> <version>6.3.0</version>
</dependency>
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-open</artifactId>
<version>4.2.5.B</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.thoughtworks.xstream</groupId> <groupId>com.thoughtworks.xstream</groupId>
@ -228,21 +211,6 @@
<artifactId>jedis-lock</artifactId> <artifactId>jedis-lock</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
</dependency> </dependency>
<dependency>
<groupId>com.baidu.aip</groupId>
<artifactId>java-sdk</artifactId>
<version>4.16.5</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- lucene --> <!-- lucene -->
<dependency> <dependency>
@ -273,12 +241,12 @@
<dependency> <dependency>
<groupId>cn.hutool</groupId> <groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId> <artifactId>hutool-core</artifactId>
<version>5.7.20</version> <version>5.8.5</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>cn.hutool</groupId> <groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId> <artifactId>hutool-http</artifactId>
<version>5.7.20</version> <version>5.8.5</version>
</dependency> </dependency>
<dependency> <dependency>
@ -292,8 +260,6 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -2,10 +2,12 @@ package com.rymcu.forest;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;
/** /**
* @author ronger * @author ronger
*/ */
@EnableAsync
@SpringBootApplication @SpringBootApplication
public class ForestApplication { public class ForestApplication {

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.config; package com.rymcu.forest.config;
import com.alibaba.fastjson.support.spring.FastJsonJsonView; import com.alibaba.fastjson.support.spring.FastJsonJsonView;
import com.rymcu.forest.core.exception.BusinessException;
import com.rymcu.forest.core.exception.ServiceException; import com.rymcu.forest.core.exception.ServiceException;
import com.rymcu.forest.core.exception.TransactionException; import com.rymcu.forest.core.exception.TransactionException;
import com.rymcu.forest.core.result.GlobalResult; import com.rymcu.forest.core.result.GlobalResult;
@ -62,6 +63,9 @@ public class BaseExceptionHandler {
} else if (ex instanceof ServletException) { } else if (ex instanceof ServletException) {
result.setCode(ResultCode.FAIL.getCode()); result.setCode(ResultCode.FAIL.getCode());
result.setMessage(ex.getMessage()); result.setMessage(ex.getMessage());
} else if (ex instanceof BusinessException) {
result.setCode(ResultCode.FAIL.getCode());
result.setMessage(ex.getMessage());
} else if (ex instanceof TransactionException) { } else if (ex instanceof TransactionException) {
result.setCode(TransactionCode.InsufficientBalance.getCode()); result.setCode(TransactionCode.InsufficientBalance.getCode());
result.setMessage(ex.getMessage()); result.setMessage(ex.getMessage());
@ -108,6 +112,9 @@ public class BaseExceptionHandler {
} else if (ex instanceof ServletException) { } else if (ex instanceof ServletException) {
attributes.put("code", ResultCode.FAIL.getCode()); attributes.put("code", ResultCode.FAIL.getCode());
attributes.put("message", ex.getMessage()); attributes.put("message", ex.getMessage());
} else if (ex instanceof BusinessException) {
attributes.put("code", ResultCode.FAIL.getCode());
attributes.put("message", ex.getMessage());
} else if (ex instanceof TransactionException) { } else if (ex instanceof TransactionException) {
attributes.put("code", TransactionCode.InsufficientBalance.getCode()); attributes.put("code", TransactionCode.InsufficientBalance.getCode());
attributes.put("message", ex.getMessage()); attributes.put("message", ex.getMessage());

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.config; package com.rymcu.forest.config;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.rymcu.forest.core.constant.ShiroConstants; import com.rymcu.forest.core.constant.ShiroConstants;
import com.rymcu.forest.core.exception.CaptchaException; import com.rymcu.forest.core.exception.CaptchaException;
import com.rymcu.forest.entity.Permission; import com.rymcu.forest.entity.Permission;
@ -106,7 +107,8 @@ public class BaseShiroRealm extends AuthorizingRealm {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private Integer id; // 编号 @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id; // 编号
private String account; // 登录名 private String account; // 登录名
private String name; // 姓名 private String name; // 姓名
private boolean mobileLogin; // 是否手机登录 private boolean mobileLogin; // 是否手机登录
@ -120,7 +122,7 @@ public class BaseShiroRealm extends AuthorizingRealm {
this.mobileLogin = mobileLogin; this.mobileLogin = mobileLogin;
} }
public Integer getId() { public Long getId() {
return id; return id;
} }

View File

@ -40,12 +40,11 @@ public class MybatisConfigurer {
pageHelper.setProperties(properties); pageHelper.setProperties(properties);
//添加插件 //添加插件
factory.setPlugins(new Interceptor[]{pageHelper}); factory.setPlugins(pageHelper);
//添加XML目录 //添加XML目录
ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
factory.setMapperLocations(resolver.getResources("classpath:mapper/**/*.xml")); factory.setMapperLocations(resolver.getResources("classpath:mapper/**/*.xml"));
// factory.setTypeHandlersPackage("com.rymcu.forest.util.handlers");
return factory.getObject(); return factory.getObject();
} }

View File

@ -3,14 +3,12 @@ package com.rymcu.forest.config;
import org.apache.shiro.authc.credential.HashedCredentialsMatcher; import org.apache.shiro.authc.credential.HashedCredentialsMatcher;
import org.apache.shiro.mgt.SecurityManager; import org.apache.shiro.mgt.SecurityManager;
import org.apache.shiro.session.mgt.SessionManager; import org.apache.shiro.session.mgt.SessionManager;
import org.apache.shiro.session.mgt.eis.MemorySessionDAO;
import org.apache.shiro.spring.LifecycleBeanPostProcessor; import org.apache.shiro.spring.LifecycleBeanPostProcessor;
import org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor; import org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor;
import org.apache.shiro.spring.web.ShiroFilterFactoryBean; import org.apache.shiro.spring.web.ShiroFilterFactoryBean;
import org.apache.shiro.web.filter.authc.FormAuthenticationFilter; import org.apache.shiro.web.filter.authc.FormAuthenticationFilter;
import org.apache.shiro.web.mgt.DefaultWebSecurityManager; import org.apache.shiro.web.mgt.DefaultWebSecurityManager;
import org.crazycake.shiro.RedisCacheManager;
import org.crazycake.shiro.RedisManager;
import org.crazycake.shiro.RedisSessionDAO;
import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.EnvironmentAware; import org.springframework.context.EnvironmentAware;
@ -116,62 +114,12 @@ public class ShiroConfig implements EnvironmentAware {
@Bean @Bean
public SessionManager sessionManager() { public SessionManager sessionManager() {
BaseSessionManager sessionManager = new BaseSessionManager(); BaseSessionManager sessionManager = new BaseSessionManager();
sessionManager.setSessionDAO(redisSessionDAO()); sessionManager.setSessionDAO(new MemorySessionDAO());
sessionManager.setSessionIdUrlRewritingEnabled(false); sessionManager.setSessionIdUrlRewritingEnabled(false);
sessionManager.setGlobalSessionTimeout(21600000L); sessionManager.setGlobalSessionTimeout(21600000L);
return sessionManager; return sessionManager;
} }
/**
* 配置shiro redisManager
* <p>
* 使用的是shiro-redis开源插件
*
* @return
*/
public RedisManager redisManager() {
StringBuffer host = new StringBuffer(env.getProperty("spring.redis.host"));
host.append(":").append(env.getProperty("spring.redis.port"));
// 设置redis配置信息
RedisManager redisManager = new RedisManager();
redisManager.setHost(host.toString());
redisManager.setPassword(env.getProperty("spring.redis.password"));
return redisManager;
}
/**
* cacheManager 缓存 redis实现
* <p>
* 使用的是shiro-redis开源插件
*
* @return
*/
@Bean
public RedisCacheManager cacheManager() {
RedisCacheManager redisCacheManager = new RedisCacheManager();
redisCacheManager.setRedisManager(redisManager());
return redisCacheManager;
}
/**
* RedisSessionDAO shiro sessionDao层的实现 通过redis
* <p>
* 使用的是shiro-redis开源插件
*/
@Bean
public RedisSessionDAO redisSessionDAO() {
RedisSessionDAO redisSessionDAO = new RedisSessionDAO();
redisSessionDAO.setRedisManager(redisManager());
redisSessionDAO.setExpire(21600);
return redisSessionDAO;
}
/** /**
* 开启shiro aop注解支持. * 开启shiro aop注解支持.
* 使用代理方式;所以需要开启代码支持; * 使用代理方式;所以需要开启代码支持;

View File

@ -12,6 +12,7 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter; import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.util.ResourceUtils; import org.springframework.util.ResourceUtils;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
@ -54,7 +55,7 @@ public class WebMvcConfigurer extends WebMvcConfigurationSupport {
@Override @Override
public void addCorsMappings(CorsRegistry registry) { public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**") registry.addMapping("/**")
.allowedOrigins("*") .allowedOriginPatterns(CorsConfiguration.ALL)
.allowCredentials(true) .allowCredentials(true)
.allowedMethods("GET", "POST", "DELETE", "PUT", "PATCH"); .allowedMethods("GET", "POST", "DELETE", "PUT", "PATCH");
} }

View File

@ -0,0 +1,28 @@
package com.rymcu.forest.core.exception;
import org.apache.shiro.authc.AccountException;
/**
* Created on 2022/8/25 19:27.
*
* @author ronger
* @email ronger-x@outlook.com
*/
public class AccountExistsException extends AccountException {
private static final long serialVersionUID = 3206734387536223284L;
public AccountExistsException() {
}
public AccountExistsException(String message) {
super(message);
}
public AccountExistsException(String message, Throwable cause) {
super(message, cause);
}
public AccountExistsException(Throwable cause) {
super(cause);
}
}

View File

@ -0,0 +1,28 @@
package com.rymcu.forest.core.exception;
/**
* @author KKould
*/
public class BusinessException extends RuntimeException {
private static final long serialVersionUID = 3206744387536223284L;
public BusinessException() {
}
public BusinessException(String message) {
super(message);
}
public BusinessException(String message, Throwable cause) {
super(message, cause);
}
public BusinessException(Throwable cause) {
super(cause);
}
public BusinessException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}

View File

@ -0,0 +1,27 @@
package com.rymcu.forest.core.exception;
/**
* @author KKould
*/
public class ContentNotExistException extends BusinessException {
private static final long serialVersionUID = 3206734387536223284L;
public ContentNotExistException() {
}
public ContentNotExistException(String message) {
super(message);
}
public ContentNotExistException(String message, Throwable cause) {
super(message, cause);
}
public ContentNotExistException(Throwable cause) {
super(cause);
}
public ContentNotExistException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}

View File

@ -0,0 +1,32 @@
package com.rymcu.forest.core.exception;
/**
* Created on 2022/8/25 19:11.
*
* @author ronger
* @email ronger-x@outlook.com
*/
public class NicknameOccupyException extends BusinessException {
private static final long serialVersionUID = 3206744387536223284L;
public NicknameOccupyException() {
}
public NicknameOccupyException(String message) {
super(message);
}
public NicknameOccupyException(String message, Throwable cause) {
super(message, cause);
}
public NicknameOccupyException(Throwable cause) {
super(cause);
}
public NicknameOccupyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}

View File

@ -5,7 +5,7 @@ import com.rymcu.forest.enumerate.TransactionCode;
/** /**
* @author ronger * @author ronger
*/ */
public class TransactionException extends Exception { public class TransactionException extends BusinessException {
private int code; private int code;

View File

@ -0,0 +1,29 @@
package com.rymcu.forest.core.exception;
/**
* @author KKould
*/
public class UltraViresException extends BusinessException {
private static final long serialVersionUID = 3206744387536228284L;
public UltraViresException() {
super();
}
public UltraViresException(String message) {
super(message);
}
public UltraViresException(String message, Throwable cause) {
super(message, cause);
}
public UltraViresException(Throwable cause) {
super(cause);
}
protected UltraViresException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}

View File

@ -90,7 +90,7 @@ public class VisitAspect {
if (StringUtils.isBlank(param) || "undefined".equals(param) || "null".equals(param)) { if (StringUtils.isBlank(param) || "undefined".equals(param) || "null".equals(param)) {
break; break;
} }
Integer id = Integer.parseInt(param); Long id = Long.parseLong(param);
articleService.incrementArticleViewCount(id); articleService.incrementArticleViewCount(id);
break; break;
default: default:

View File

@ -76,7 +76,7 @@ public class AuthorshipAspect {
} }
HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest(); HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest();
String idArticle; String idArticle;
Integer idAuthor = 0; Long idAuthor = 0l;
if (isAjax(request)) { if (isAjax(request)) {
Object[] objects = joinPoint.getArgs(); Object[] objects = joinPoint.getArgs();
JSONObject jsonObject; JSONObject jsonObject;

View File

@ -1,7 +1,11 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data; import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
@ -10,14 +14,19 @@ import java.util.List;
* @author ronger * @author ronger
*/ */
@Data @Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ArticleDTO { public class ArticleDTO {
private Integer idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
/** 文章标题 */ /** 文章标题 */
private String articleTitle; private String articleTitle;
/** 文章缩略图 */ /** 文章缩略图 */
private String articleThumbnailUrl; private String articleThumbnailUrl;
/** 文章作者id */ /** 文章作者id */
private Integer articleAuthorId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long articleAuthorId;
/** 文章作者 */ /** 文章作者 */
private String articleAuthorName; private String articleAuthorName;
/** 文章作者头像 */ /** 文章作者头像 */

View File

@ -1,18 +1,26 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data; import lombok.Data;
import lombok.NoArgsConstructor;
/** /**
* @author ronger * @author ronger
*/ */
@Data @Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ArticleTagDTO { public class ArticleTagDTO {
@JsonFormat(shape = JsonFormat.Shape.STRING)
private Integer idArticleTag; private Long idArticleTag;
private Integer idTag; private Integer idTag;
private Integer idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
private String tagTitle; private String tagTitle;
@ -22,5 +30,6 @@ public class ArticleTagDTO {
private String tagIconPath; private String tagIconPath;
private Integer tagAuthorId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long tagAuthorId;
} }

View File

@ -1,14 +1,22 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data; import lombok.Data;
import lombok.NoArgsConstructor;
/** /**
* @author ronger * @author ronger
*/ */
@Data @Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Author { public class Author {
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String userNickname; private String userNickname;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
/** /**
@ -8,7 +9,8 @@ import lombok.Data;
@Data @Data
public class ChangeEmailDTO { public class ChangeEmailDTO {
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String email; private String email;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.rymcu.forest.entity.Notification; import com.rymcu.forest.entity.Notification;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
@ -11,7 +12,8 @@ import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)
public class NotificationDTO extends Notification { public class NotificationDTO extends Notification {
private Integer idNotification; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idNotification;
private String dataTitle; private String dataTitle;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import java.util.List; import java.util.List;
@ -10,11 +11,14 @@ import java.util.List;
@Data @Data
public class PortfolioArticleDTO { public class PortfolioArticleDTO {
private Integer id; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id;
private Integer idPortfolio; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idPortfolio;
private Integer idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
private String headImgUrl; private String headImgUrl;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import java.util.Date; import java.util.Date;
@ -10,11 +11,13 @@ import java.util.Date;
@Data @Data
public class PortfolioDTO { public class PortfolioDTO {
private Integer idPortfolio; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idPortfolio;
/** 作品集头像 */ /** 作品集头像 */
private String headImgUrl; private String headImgUrl;
/** 作品集作者 */ /** 作品集作者 */
private Integer portfolioAuthorId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long portfolioAuthorId;
/** 作品集作者 */ /** 作品集作者 */
private String portfolioAuthorName; private String portfolioAuthorName;
/** 作品集作者头像 */ /** 作品集作者头像 */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
/** /**
@ -8,7 +9,8 @@ import lombok.Data;
@Data @Data
public class TokenUser { public class TokenUser {
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String account; private String account;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
/** /**
@ -8,7 +9,8 @@ import lombok.Data;
@Data @Data
public class UpdatePasswordDTO { public class UpdatePasswordDTO {
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String password; private String password;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
/** /**
@ -8,7 +9,8 @@ import lombok.Data;
@Data @Data
public class UserDTO { public class UserDTO {
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String account; private String account;

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.dto; package com.rymcu.forest.dto;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -13,7 +14,8 @@ import java.util.Date;
@Data @Data
public class UserInfoDTO implements Serializable { public class UserInfoDTO implements Serializable {
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String account; private String account;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto.admin; package com.rymcu.forest.dto.admin;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
/** /**
@ -8,7 +9,9 @@ import lombok.Data;
@Data @Data
public class TopicTagDTO { public class TopicTagDTO {
private Integer idTopic; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idTopic;
private Integer idTag; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idTag;
} }

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.dto.admin; package com.rymcu.forest.dto.admin;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
/** /**
@ -7,7 +8,10 @@ import lombok.Data;
*/ */
@Data @Data
public class UserRoleDTO { public class UserRoleDTO {
private Integer idUser;
private Integer idRole; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
@JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idRole;
} }

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -19,13 +20,15 @@ public class Article implements Serializable,Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
/** 文章标题 */ /** 文章标题 */
private String articleTitle; private String articleTitle;
/** 文章缩略图 */ /** 文章缩略图 */
private String articleThumbnailUrl; private String articleThumbnailUrl;
/** 文章作者id */ /** 文章作者id */
private Integer articleAuthorId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long articleAuthorId;
/** 文章类型 */ /** 文章类型 */
private String articleType; private String articleType;
/** 文章标签 */ /** 文章标签 */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -18,7 +19,8 @@ public class ArticleContent {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
private String articleContent; private String articleContent;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -21,15 +22,18 @@ public class ArticleThumbsUp implements Serializable, Cloneable {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idArticleThumbsUp; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticleThumbsUp;
/** /**
* 文章表主键 * 文章表主键
*/ */
private Integer idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
/** /**
* 用户表主键 * 用户表主键
*/ */
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
/** /**
* 点赞时间 * 点赞时间
*/ */

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -21,15 +22,17 @@ public class Bank {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idBank; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idBank;
/** 银行名称 */ /** 银行名称 */
private String bankName; private String bankName;
/** 银行负责人 */ /** 银行负责人 */
private Integer bankOwner; private Long bankOwner;
/** 银行描述 */ /** 银行描述 */
private String bankDescription; private String bankDescription;
/** 创建人 */ /** 创建人 */
private Integer createdBy; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long createdBy;
/** 创建时间 */ /** 创建时间 */
@JSONField(format = "yyyy-MM-dd HH:mm:ss") @JSONField(format = "yyyy-MM-dd HH:mm:ss")
private Date createdTime; private Date createdTime;

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -21,15 +22,18 @@ public class BankAccount {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idBankAccount; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idBankAccount;
/** 所属银行 */ /** 所属银行 */
private Integer idBank; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idBank;
/** 银行账户 */ /** 银行账户 */
private String bankAccount; private String bankAccount;
/** 账户余额 */ /** 账户余额 */
private BigDecimal accountBalance; private BigDecimal accountBalance;
/** 账户所有者 */ /** 账户所有者 */
private Integer accountOwner; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long accountOwner;
/** 创建时间 */ /** 创建时间 */
@JSONField(format = "yyyy-MM-dd HH:mm:ss") @JSONField(format = "yyyy-MM-dd HH:mm:ss")
private Date createdTime; private Date createdTime;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -19,22 +20,26 @@ public class Comment implements Serializable,Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idComment; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idComment;
/** 评论内容 */ /** 评论内容 */
@Column(name = "comment_content") @Column(name = "comment_content")
private String commentContent; private String commentContent;
/** 作者 id */ /** 作者 id */
@Column(name = "comment_author_id") @Column(name = "comment_author_id")
private Integer commentAuthorId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long commentAuthorId;
/** 文章 id */ /** 文章 id */
@Column(name = "comment_article_id") @Column(name = "comment_article_id")
private Integer commentArticleId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long commentArticleId;
/** 锚点 url */ /** 锚点 url */
@Column(name = "comment_sharp_url") @Column(name = "comment_sharp_url")
private String commentSharpUrl; private String commentSharpUrl;
/** 父评论 id */ /** 父评论 id */
@Column(name = "comment_original_comment_id") @Column(name = "comment_original_comment_id")
private Integer commentOriginalCommentId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long commentOriginalCommentId;
/** 状态 */ /** 状态 */
@Column(name = "comment_status") @Column(name = "comment_status")
private String commentStatus; private String commentStatus;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.GeneratedValue; import javax.persistence.GeneratedValue;
@ -18,11 +19,13 @@ public class CurrencyIssue {
/** 主键 */ /** 主键 */
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer id; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id;
/** 发行数额 */ /** 发行数额 */
private BigDecimal issueValue; private BigDecimal issueValue;
/** 发行人 */ /** 发行人 */
private Integer createdBy; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long createdBy;
/** 发行时间 */ /** 发行时间 */
private Date createdTime; private Date createdTime;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -21,7 +22,8 @@ public class CurrencyRule implements Serializable, Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idCurrencyRule; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idCurrencyRule;
/** /**
* 规则名称 * 规则名称
*/ */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -18,13 +19,16 @@ public class Follow implements Serializable,Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idFollow; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idFollow;
/** 关注者 id */ /** 关注者 id */
@Column(name = "follower_id") @Column(name = "follower_id")
private Integer followerId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long followerId;
/** 关注数据 id */ /** 关注数据 id */
@Column(name = "following_id") @Column(name = "following_id")
private Integer followingId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long followingId;
/** 0用户1标签2帖子收藏3帖子关注 */ /** 0用户1标签2帖子收藏3帖子关注 */
@Column(name = "following_type") @Column(name = "following_type")
private String followingType; private String followingType;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -21,13 +22,15 @@ public class ForestFile {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
@JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id; private Long id;
/** /**
* 文件大小 * 文件大小
*/ */
@Column(name = "file_size") @Column(name = "file_size")
private long fileSize; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long fileSize;
/** /**
* 文件类型-文件后缀 * 文件类型-文件后缀
@ -68,7 +71,8 @@ public class ForestFile {
* 创建人 * 创建人
*/ */
@Column(name = "created_by") @Column(name = "created_by")
private long createdBy; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long createdBy;
} }

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -22,7 +23,8 @@ public class LoginRecord implements Serializable,Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer id; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id;
/** IP */ /** IP */
@Column(name = "login_ip") @Column(name = "login_ip")
private String loginIp; private String loginIp;
@ -43,7 +45,8 @@ public class LoginRecord implements Serializable,Cloneable {
private String loginBrowser; private String loginBrowser;
/** 用户 id */ /** 用户 id */
@Column(name = "id_user") @Column(name = "id_user")
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
/** 创建时间 */ /** 创建时间 */
@Column(name = "created_time") @Column(name = "created_time")
@JSONField(format = "yyyy-MM-dd HH:mm:ss") @JSONField(format = "yyyy-MM-dd HH:mm:ss")

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -23,12 +24,14 @@ public class Notification implements Serializable,Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idNotification; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idNotification;
/** /**
* 用户id * 用户id
*/ */
@Column(name = "id_user") @Column(name = "id_user")
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
/** /**
* 数据类型 * 数据类型
*/ */
@ -38,7 +41,8 @@ public class Notification implements Serializable,Cloneable {
* 数据id * 数据id
*/ */
@Column(name = "data_id") @Column(name = "data_id")
private Integer dataId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long dataId;
/** /**
* 数据摘要 * 数据摘要
*/ */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import tk.mybatis.mapper.annotation.ColumnType; import tk.mybatis.mapper.annotation.ColumnType;
@ -19,7 +20,8 @@ public class Permission implements Serializable,Cloneable {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idPermission; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idPermission;
/** /**
* 权限标识 * 权限标识

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.*; import javax.persistence.*;
@ -15,14 +16,16 @@ public class Portfolio {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idPortfolio; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idPortfolio;
/** 作品集头像 */ /** 作品集头像 */
@Column(name = "portfolio_head_img_url") @Column(name = "portfolio_head_img_url")
private String headImgUrl; private String headImgUrl;
/** 作品集名称 */ /** 作品集名称 */
private String portfolioTitle; private String portfolioTitle;
/** 作品集作者 */ /** 作品集作者 */
private Integer portfolioAuthorId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long portfolioAuthorId;
/** 作品集介绍 */ /** 作品集介绍 */
private String portfolioDescription; private String portfolioDescription;
/** 作品集介绍 Html */ /** 作品集介绍 Html */

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -26,7 +27,8 @@ public class Product implements Serializable, Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer idProduct; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idProduct;
/** /**
* 产品名 * 产品名
*/ */

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Table; import javax.persistence.Table;
@ -20,7 +21,8 @@ public class ProductContent implements Serializable, Cloneable {
/** /**
* 产品表主键 * 产品表主键
*/ */
private Integer idProduct; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idProduct;
/** /**
* 产品详情原文 * 产品详情原文
*/ */

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -19,7 +20,8 @@ public class Role implements Serializable,Cloneable {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idRole; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idRole;
/** /**
* 角色名称 * 角色名称

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -19,7 +20,8 @@ public class SpecialDay implements Serializable,Cloneable{
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idSpecialDay; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idSpecialDay;
/** 名称 */ /** 名称 */
private String specialDayName; private String specialDayName;
/** 权重/优先级,小数优秀 */ /** 权重/优先级,小数优秀 */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.GeneratedValue; import javax.persistence.GeneratedValue;
@ -20,7 +21,8 @@ public class Sponsor implements Serializable, Cloneable {
*/ */
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer id; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id;
/** /**
* 数据类型 * 数据类型
*/ */
@ -28,11 +30,13 @@ public class Sponsor implements Serializable, Cloneable {
/** /**
* 数据主键 * 数据主键
*/ */
private Integer dataId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long dataId;
/** /**
* 赞赏人 * 赞赏人
*/ */
private Integer sponsor; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long sponsor;
/** /**
* 赞赏日期 * 赞赏日期
*/ */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -19,7 +20,8 @@ public class Tag implements Serializable,Cloneable {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idTag; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idTag;
/** 标签名 */ /** 标签名 */
private String tagTitle; private String tagTitle;
/** 标签图标 */ /** 标签图标 */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -19,7 +20,8 @@ public class Topic {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idTopic; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idTopic;
/** 专题标题 */ /** 专题标题 */
private String topicTitle; private String topicTitle;
/** 专题路径 */ /** 专题路径 */

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -20,7 +21,8 @@ public class TransactionRecord {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idTransactionRecord; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idTransactionRecord;
/** 交易流水号 */ /** 交易流水号 */
private String transactionNo; private String transactionNo;
/** 款项 */ /** 款项 */

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import org.apache.ibatis.type.JdbcType; import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType; import tk.mybatis.mapper.annotation.ColumnType;
@ -21,7 +22,8 @@ public class User implements Serializable,Cloneable {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
/** /**
* 登录账号 * 登录账号

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Id; import javax.persistence.Id;
@ -13,7 +14,8 @@ import javax.persistence.Table;
public class UserExtend { public class UserExtend {
@Id @Id
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
private String github; private String github;

View File

@ -1,6 +1,7 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -22,7 +23,8 @@ public class Visit implements Serializable,Cloneable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@Column(name = "id") @Column(name = "id")
private Integer id; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long id;
/** 浏览链接 */ /** 浏览链接 */
@Column(name = "visit_url") @Column(name = "visit_url")
private String visitUrl; private String visitUrl;
@ -40,7 +42,8 @@ public class Visit implements Serializable,Cloneable {
private String visitDeviceId; private String visitDeviceId;
/** 浏览者 id */ /** 浏览者 id */
@Column(name = "visit_user_id") @Column(name = "visit_user_id")
private Integer visitUserId; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long visitUserId;
/** 上游链接 */ /** 上游链接 */
@Column(name = "visit_referer_url") @Column(name = "visit_referer_url")
private String visitRefererUrl; private String visitRefererUrl;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.entity; package com.rymcu.forest.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import javax.persistence.Column; import javax.persistence.Column;
@ -17,7 +18,8 @@ public class WxUser {
@Id @Id
@Column(name = "id") @Column(name = "id")
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
private Integer idWxUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idWxUser;
private Boolean subscribe; private Boolean subscribe;

View File

@ -0,0 +1,26 @@
package com.rymcu.forest.handler;
import com.rymcu.forest.handler.event.AccountEvent;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.event.EventListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
/**
* Created on 2022/8/24 14:44.
*
* @author ronger
* @email ronger-x@outlook.com
* @packageName com.rymcu.forest.handler
*/
@Slf4j
@Component
public class AccountHandler {
@Async
@EventListener
public void processAccountLastLoginEvent(AccountEvent accountEvent) {
}
}

View File

@ -0,0 +1,66 @@
package com.rymcu.forest.handler;
import com.alibaba.fastjson.JSON;
import com.rymcu.forest.core.constant.NotificationConstant;
import com.rymcu.forest.handler.event.ArticleDeleteEvent;
import com.rymcu.forest.handler.event.ArticleEvent;
import com.rymcu.forest.lucene.service.LuceneService;
import com.rymcu.forest.util.NotificationUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.event.EventListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
/**
* Created on 2022/8/16 20:42.
*
* @author ronger
* @email ronger-x@outlook.com
*/
@Slf4j
@Component
public class ArticleHandler {
@Resource
private LuceneService luceneService;
@EventListener
@Async
public void processArticlePostEvent(ArticleEvent articleEvent) throws InterruptedException {
Thread.sleep(1000);
log.info(String.format("执行文章发布相关事件:[%s]", JSON.toJSONString(articleEvent)));
// 发送系统通知
if (articleEvent.getNotification()) {
NotificationUtils.sendAnnouncement(articleEvent.getIdArticle(), NotificationConstant.Article, articleEvent.getArticleTitle());
} else {
// 发送关注通知
StringBuilder dataSummary = new StringBuilder();
if (articleEvent.getIsUpdate()) {
dataSummary.append(articleEvent.getNickname()).append("更新了文章: ").append(articleEvent.getArticleTitle());
NotificationUtils.sendArticlePush(articleEvent.getIdArticle(), NotificationConstant.UpdateArticle, dataSummary.toString(), articleEvent.getArticleAuthorId());
} else {
dataSummary.append(articleEvent.getNickname()).append("发布了文章: ").append(articleEvent.getArticleTitle());
NotificationUtils.sendArticlePush(articleEvent.getIdArticle(), NotificationConstant.PostArticle, dataSummary.toString(), articleEvent.getArticleAuthorId());
}
}
// 草稿不更新索引
if (articleEvent.getIsUpdate()) {
log.info("更新文章索引id={}", articleEvent.getIdArticle());
luceneService.updateArticle(articleEvent.getIdArticle());
} else {
log.info("写入文章索引id={}", articleEvent.getIdArticle());
luceneService.writeArticle(articleEvent.getIdArticle());
}
log.info("执行完成文章发布相关事件...id={}", articleEvent.getIdArticle());
}
@EventListener
@Async
public void processArticleDeleteEvent(ArticleDeleteEvent articleDeleteEvent) throws InterruptedException {
Thread.sleep(1000);
log.info(String.format("执行文章删除相关事件:[%s]", JSON.toJSONString(articleDeleteEvent)));
luceneService.deleteArticle(articleDeleteEvent.getIdArticle());
log.info("执行完成文章删除相关事件...id={}", articleDeleteEvent.getIdArticle());
}
}

View File

@ -0,0 +1,57 @@
package com.rymcu.forest.handler;
import com.alibaba.fastjson.JSON;
import com.rymcu.forest.core.constant.NotificationConstant;
import com.rymcu.forest.entity.Comment;
import com.rymcu.forest.handler.event.CommentEvent;
import com.rymcu.forest.mapper.CommentMapper;
import com.rymcu.forest.util.Html2TextUtil;
import com.rymcu.forest.util.NotificationUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.event.EventListener;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
/**
* Created on 2022/8/17 7:38.
*
* @author ronger
* @email ronger-x@outlook.com
* @packageName com.rymcu.forest.handler
*/
@Slf4j
@Component
public class CommentHandler {
private static final int MAX_PREVIEW = 200;
@Resource
private CommentMapper commentMapper;
@Async
@EventListener
public void processCommentCreatedEvent(CommentEvent commentEvent) throws InterruptedException {
log.info(String.format("开始执行评论发布事件:[%s]", JSON.toJSONString(commentEvent)));
String commentContent = commentEvent.getContent();
Integer length = commentContent.length();
if (length > MAX_PREVIEW) {
length = 200;
}
String commentPreviewContent = commentContent.substring(0, length);
commentContent = Html2TextUtil.getContent(commentPreviewContent);
// 判断是否是回复消息
if (commentEvent.getCommentOriginalCommentId() != null && commentEvent.getCommentOriginalCommentId() != 0) {
Comment originalComment = commentMapper.selectByPrimaryKey(commentEvent.getCommentOriginalCommentId());
// 回复消息时,评论者不是上级评论作者则进行消息通知
if (!commentEvent.getCommentAuthorId().equals(originalComment.getCommentAuthorId())) {
NotificationUtils.saveNotification(originalComment.getCommentAuthorId(), commentEvent.getIdComment(), NotificationConstant.Comment, commentContent);
}
} else {
// 评论者不是作者本人则进行消息通知
if (!commentEvent.getCommentAuthorId().equals(commentEvent.getArticleAuthorId())) {
NotificationUtils.saveNotification(commentEvent.getArticleAuthorId(), commentEvent.getIdComment(), NotificationConstant.Comment, commentContent);
}
}
}
}

View File

@ -0,0 +1,19 @@
package com.rymcu.forest.handler.event;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* Created on 2022/8/24 14:45.
*
* @author ronger
* @email ronger-x@outlook.com
* @packageName com.rymcu.forest.handler.event
*/
@Data
@AllArgsConstructor
public class AccountEvent {
private String account;
}

View File

@ -0,0 +1,18 @@
package com.rymcu.forest.handler.event;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* Created on 2022/8/20 18:51.
*
* @author ronger
* @email ronger-x@outlook.com
*/
@Data
@AllArgsConstructor
public class ArticleDeleteEvent {
private Long idArticle;
}

View File

@ -0,0 +1,27 @@
package com.rymcu.forest.handler.event;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* Created on 2022/8/16 20:56.
*
* @author ronger
* @email ronger-x@outlook.com
*/
@Data
@AllArgsConstructor
public class ArticleEvent {
private Long idArticle;
private String articleTitle;
private Boolean isUpdate;
private Boolean notification;
private String nickname;
private Long articleAuthorId;
}

View File

@ -0,0 +1,26 @@
package com.rymcu.forest.handler.event;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* Created on 2022/8/17 7:43.
*
* @author ronger
* @email ronger-x@outlook.com
* @packageName com.rymcu.forest.handler.event
*/
@Data
@AllArgsConstructor
public class CommentEvent {
private Long idComment;
private Long articleAuthorId;
private Long commentAuthorId;
private String content;
private Long commentOriginalCommentId;
}

View File

@ -1,13 +1,14 @@
package com.rymcu.forest.jwt.service; package com.rymcu.forest.jwt.service;
import com.rymcu.forest.handler.event.AccountEvent;
import com.rymcu.forest.jwt.def.JwtConstants; import com.rymcu.forest.jwt.def.JwtConstants;
import com.rymcu.forest.jwt.model.TokenModel; import com.rymcu.forest.jwt.model.TokenModel;
import com.rymcu.forest.service.UserService;
import io.jsonwebtoken.Jwts; import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm; import io.jsonwebtoken.SignatureAlgorithm;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.data.redis.core.StringRedisTemplate; import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
@ -27,7 +28,7 @@ public class RedisTokenManager implements TokenManager {
@Autowired @Autowired
private StringRedisTemplate redisTemplate; private StringRedisTemplate redisTemplate;
@Resource @Resource
private UserService userService; private ApplicationEventPublisher applicationEventPublisher;
/** /**
* 生成TOKEN * 生成TOKEN
@ -62,7 +63,7 @@ public class RedisTokenManager implements TokenManager {
String result = redisTemplate.boundValueOps(key.toString()).get(); String result = redisTemplate.boundValueOps(key.toString()).get();
if (StringUtils.isBlank(result)) { if (StringUtils.isBlank(result)) {
// 更新最后在线时间 // 更新最后在线时间
userService.updateLastOnlineTimeByEmail(model.getUsername()); applicationEventPublisher.publishEvent(new AccountEvent(model.getUsername()));
redisTemplate.boundValueOps(key.toString()).set(LocalDateTime.now().toString(), JwtConstants.LAST_ONLINE_EXPIRES_MINUTE, TimeUnit.MINUTES); redisTemplate.boundValueOps(key.toString()).set(LocalDateTime.now().toString(), JwtConstants.LAST_ONLINE_EXPIRES_MINUTE, TimeUnit.MINUTES);
} }
return true; return true;

View File

@ -99,7 +99,7 @@ public class LuceneSearchController {
int endIndex = Math.min(startIndex + rows, total); int endIndex = Math.min(startIndex + rows, total);
// 分割子列表 // 分割子列表
List<ArticleLucene> subList = resList.subList(startIndex, endIndex); List<ArticleLucene> subList = resList.subList(startIndex, endIndex);
String[] ids = subList.stream().map(ArticleLucene::getIdArticle).toArray(String[]::new); Long[] ids = subList.stream().map(ArticleLucene::getIdArticle).toArray(Long[]::new);
List<ArticleDTO> articleDTOList = luceneService.getArticlesByIds(ids); List<ArticleDTO> articleDTOList = luceneService.getArticlesByIds(ids);
ArticleDTO temp; ArticleDTO temp;
// 写入文章关键词信息 // 写入文章关键词信息
@ -114,7 +114,7 @@ public class LuceneSearchController {
} }
articles.addAll(articleDTOList); articles.addAll(articleDTOList);
PageInfo<ArticleDTO> pageInfo = new PageInfo<>(articles); PageInfo<ArticleDTO> pageInfo = new PageInfo<>(articles);
return GlobalResultGenerator.genSuccessResult(Utils.getArticlesGlobalResult(pageInfo)); return GlobalResultGenerator.genSuccessResult(pageInfo);
} }
/** /**
@ -141,7 +141,7 @@ public class LuceneSearchController {
int endIndex = Math.min(startIndex + rows, total); int endIndex = Math.min(startIndex + rows, total);
// 分割子列表 // 分割子列表
List<UserLucene> subList = resList.subList(startIndex, endIndex); List<UserLucene> subList = resList.subList(startIndex, endIndex);
Integer[] ids = subList.stream().map(UserLucene::getIdUser).toArray(Integer[]::new); Long[] ids = subList.stream().map(UserLucene::getIdUser).toArray(Long[]::new);
List<UserDTO> userDTOList = userLuceneService.getUsersByIds(ids); List<UserDTO> userDTOList = userLuceneService.getUsersByIds(ids);
UserDTO temp; UserDTO temp;
// 写入文章关键词信息 // 写入文章关键词信息
@ -156,7 +156,7 @@ public class LuceneSearchController {
} }
users.addAll(userDTOList); users.addAll(userDTOList);
PageInfo<UserDTO> pageInfo = new PageInfo<>(users); PageInfo<UserDTO> pageInfo = new PageInfo<>(users);
return GlobalResultGenerator.genSuccessResult(Utils.getUserGlobalResult(pageInfo)); return GlobalResultGenerator.genSuccessResult(pageInfo);
} }
/** /**
@ -183,7 +183,7 @@ public class LuceneSearchController {
int endIndex = Math.min(startIndex + rows, total); int endIndex = Math.min(startIndex + rows, total);
// 分割子列表 // 分割子列表
List<PortfolioLucene> subList = resList.subList(startIndex, endIndex); List<PortfolioLucene> subList = resList.subList(startIndex, endIndex);
String[] ids = subList.stream().map(PortfolioLucene::getIdPortfolio).toArray(String[]::new); Long[] ids = subList.stream().map(PortfolioLucene::getIdPortfolio).toArray(Long[]::new);
List<PortfolioDTO> portfolioDTOList = portfolioLuceneService.getPortfoliosByIds(ids); List<PortfolioDTO> portfolioDTOList = portfolioLuceneService.getPortfoliosByIds(ids);
PortfolioDTO temp; PortfolioDTO temp;
// 写入文章关键词信息 // 写入文章关键词信息
@ -198,6 +198,6 @@ public class LuceneSearchController {
} }
portfolios.addAll(portfolioDTOList); portfolios.addAll(portfolioDTOList);
PageInfo<PortfolioDTO> pageInfo = new PageInfo<>(portfolios); PageInfo<PortfolioDTO> pageInfo = new PageInfo<>(portfolios);
return GlobalResultGenerator.genSuccessResult(Utils.getPortfolioGlobalResult(pageInfo)); return GlobalResultGenerator.genSuccessResult(pageInfo);
} }
} }

View File

@ -29,7 +29,7 @@ public interface ArticleLuceneMapper {
* @param ids 文章id(半角逗号分隔) * @param ids 文章id(半角逗号分隔)
* @return * @return
*/ */
List<ArticleDTO> getArticlesByIds(@Param("ids") String[] ids); List<ArticleDTO> getArticlesByIds(@Param("ids") Long[] ids);
/** /**
@ -38,6 +38,6 @@ public interface ArticleLuceneMapper {
* @param id 文章id * @param id 文章id
* @return * @return
*/ */
ArticleLucene getById(@Param("id") String id); ArticleLucene getById(@Param("id") Long id);
} }

View File

@ -32,7 +32,7 @@ public interface PortfolioLuceneMapper {
* @param ids 作品集id(半角逗号分隔) * @param ids 作品集id(半角逗号分隔)
* @return * @return
*/ */
List<PortfolioDTO> getPortfoliosByIds(@Param("ids") String[] ids); List<PortfolioDTO> getPortfoliosByIds(@Param("ids") Long[] ids);
/** /**
* 加载作品集 * 加载作品集
@ -40,5 +40,5 @@ public interface PortfolioLuceneMapper {
* @param id 用户id * @param id 用户id
* @return * @return
*/ */
PortfolioLucene getById(@Param("id") String id); PortfolioLucene getById(@Param("id") Long id);
} }

View File

@ -29,7 +29,7 @@ public interface UserLuceneMapper {
* @param ids 用户id(半角逗号分隔) * @param ids 用户id(半角逗号分隔)
* @return * @return
*/ */
List<UserDTO> getUsersByIds(@Param("ids") Integer[] ids); List<UserDTO> getUsersByIds(@Param("ids") Long[] ids);
/** /**
* 加载 UserLucene * 加载 UserLucene

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.lucene.model; package com.rymcu.forest.lucene.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
import lombok.Data; import lombok.Data;
@ -20,7 +21,8 @@ import javax.persistence.Id;
public class ArticleLucene { public class ArticleLucene {
/** 文章编号 */ /** 文章编号 */
private String idArticle; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idArticle;
/** 文章标题 */ /** 文章标题 */
private String articleTitle; private String articleTitle;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.lucene.model; package com.rymcu.forest.lucene.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
import lombok.Data; import lombok.Data;
@ -18,7 +19,8 @@ import lombok.NoArgsConstructor;
public class PortfolioLucene { public class PortfolioLucene {
/** 作品集编号 */ /** 作品集编号 */
private String idPortfolio; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idPortfolio;
/** 作品集名称 */ /** 作品集名称 */
private String portfolioTitle; private String portfolioTitle;

View File

@ -1,5 +1,6 @@
package com.rymcu.forest.lucene.model; package com.rymcu.forest.lucene.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
import lombok.Data; import lombok.Data;
@ -22,7 +23,8 @@ import javax.persistence.Column;
public class UserLucene { public class UserLucene {
/** 用户编号 */ /** 用户编号 */
private Integer idUser; @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long idUser;
/** 昵称 */ /** 昵称 */
private String nickname; private String nickname;

View File

@ -25,7 +25,7 @@ public interface LuceneService {
* *
* @param id * @param id
*/ */
void writeArticle(String id); void writeArticle(Long id);
/** /**
@ -40,14 +40,14 @@ public interface LuceneService {
* *
* @param id * @param id
*/ */
void updateArticle(String id); void updateArticle(Long id);
/** /**
* 删除单个文章索引 * 删除单个文章索引
* *
* @param id * @param id
*/ */
void deleteArticle(String id); void deleteArticle(Long id);
/** /**
* 关键词搜索 * 关键词搜索
@ -71,5 +71,5 @@ public interface LuceneService {
* @param ids 文章id(半角逗号分隔) * @param ids 文章id(半角逗号分隔)
* @return * @return
*/ */
List<ArticleDTO> getArticlesByIds(String[] ids); List<ArticleDTO> getArticlesByIds(Long[] ids);
} }

View File

@ -25,7 +25,7 @@ public interface PortfolioLuceneService {
* *
* @param id * @param id
*/ */
void writePortfolio(String id); void writePortfolio(Long id);
/** /**
* 写入单个作品集索引 * 写入单个作品集索引
@ -39,14 +39,14 @@ public interface PortfolioLuceneService {
* *
* @param id * @param id
*/ */
void updatePortfolio(String id); void updatePortfolio(Long id);
/** /**
* 删除单个作品集索引 * 删除单个作品集索引
* *
* @param id * @param id
*/ */
void deletePortfolio(String id); void deletePortfolio(Long id);
/** /**
* 关键词搜索 * 关键词搜索
@ -70,5 +70,5 @@ public interface PortfolioLuceneService {
* @param ids 作品集id(半角逗号分隔) * @param ids 作品集id(半角逗号分隔)
* @return * @return
*/ */
List<PortfolioDTO> getPortfoliosByIds(String[] ids); List<PortfolioDTO> getPortfoliosByIds(Long[] ids);
} }

View File

@ -70,5 +70,5 @@ public interface UserLuceneService {
* @param ids 用户id(半角逗号分隔) * @param ids 用户id(半角逗号分隔)
* @return * @return
*/ */
List<UserDTO> getUsersByIds(Integer[] ids); List<UserDTO> getUsersByIds(Long[] ids);
} }

View File

@ -65,6 +65,7 @@ public class LuceneServiceImpl implements LuceneService {
try { try {
int totalCount = list.size(); int totalCount = list.size();
int perThreadCount = 3000; int perThreadCount = 3000;
// 加1避免线程池的参数为0
int threadCount = totalCount / perThreadCount + (totalCount % perThreadCount == 0 ? 0 : 1); int threadCount = totalCount / perThreadCount + (totalCount % perThreadCount == 0 ? 0 : 1);
ExecutorService pool = Executors.newFixedThreadPool(threadCount); ExecutorService pool = Executors.newFixedThreadPool(threadCount);
CountDownLatch countDownLatch1 = new CountDownLatch(1); CountDownLatch countDownLatch1 = new CountDownLatch(1);
@ -94,7 +95,7 @@ public class LuceneServiceImpl implements LuceneService {
} }
@Override @Override
public void writeArticle(String id) { public void writeArticle(Long id) {
writeArticle(luceneMapper.getById(id)); writeArticle(luceneMapper.getById(id));
} }
@ -104,12 +105,12 @@ public class LuceneServiceImpl implements LuceneService {
} }
@Override @Override
public void updateArticle(String id) { public void updateArticle(Long id) {
ArticleIndexUtil.updateIndex(luceneMapper.getById(id)); ArticleIndexUtil.updateIndex(luceneMapper.getById(id));
} }
@Override @Override
public void deleteArticle(String id) { public void deleteArticle(Long id) {
ArticleIndexUtil.deleteIndex(id); ArticleIndexUtil.deleteIndex(id);
} }
@ -181,7 +182,7 @@ public class LuceneServiceImpl implements LuceneService {
} }
resList.add( resList.add(
ArticleLucene.builder() ArticleLucene.builder()
.idArticle(hitDoc.get("id")) .idArticle(Long.valueOf(hitDoc.get("id")))
.articleTitle(titleValue.toString()) .articleTitle(titleValue.toString())
.articleContent(baikeValue.toString()) .articleContent(baikeValue.toString())
.score(String.valueOf(score)) .score(String.valueOf(score))
@ -205,9 +206,9 @@ public class LuceneServiceImpl implements LuceneService {
} }
@Override @Override
public List<ArticleDTO> getArticlesByIds(String[] ids) { public List<ArticleDTO> getArticlesByIds(Long[] ids) {
List<ArticleDTO> list = luceneMapper.getArticlesByIds(ids); List<ArticleDTO> list = luceneMapper.getArticlesByIds(ids);
list.forEach(articleDTO -> genArticle(articleDTO)); list.forEach(this::genArticle);
return list; return list;
} }

View File

@ -55,6 +55,7 @@ public class PortfolioLuceneServiceImpl implements PortfolioLuceneService {
try { try {
int totalCount = list.size(); int totalCount = list.size();
int perThreadCount = 3000; int perThreadCount = 3000;
// 加1避免线程池的参数为0
int threadCount = totalCount / perThreadCount + (totalCount % perThreadCount == 0 ? 0 : 1); int threadCount = totalCount / perThreadCount + (totalCount % perThreadCount == 0 ? 0 : 1);
ExecutorService pool = Executors.newFixedThreadPool(threadCount); ExecutorService pool = Executors.newFixedThreadPool(threadCount);
CountDownLatch countDownLatch1 = new CountDownLatch(1); CountDownLatch countDownLatch1 = new CountDownLatch(1);
@ -83,7 +84,7 @@ public class PortfolioLuceneServiceImpl implements PortfolioLuceneService {
} }
@Override @Override
public void writePortfolio(String id) { public void writePortfolio(Long id) {
writePortfolio(portfolioLuceneMapper.getById(id)); writePortfolio(portfolioLuceneMapper.getById(id));
} }
@ -94,12 +95,12 @@ public class PortfolioLuceneServiceImpl implements PortfolioLuceneService {
@Override @Override
public void updatePortfolio(String id) { public void updatePortfolio(Long id) {
PortfolioIndexUtil.updateIndex(portfolioLuceneMapper.getById(id)); PortfolioIndexUtil.updateIndex(portfolioLuceneMapper.getById(id));
} }
@Override @Override
public void deletePortfolio(String id) { public void deletePortfolio(Long id) {
PortfolioIndexUtil.deleteIndex(id); PortfolioIndexUtil.deleteIndex(id);
} }
@ -109,7 +110,7 @@ public class PortfolioLuceneServiceImpl implements PortfolioLuceneService {
} }
@Override @Override
public List<PortfolioDTO> getPortfoliosByIds(String[] ids) { public List<PortfolioDTO> getPortfoliosByIds(Long[] ids) {
return portfolioLuceneMapper.getPortfoliosByIds(ids); return portfolioLuceneMapper.getPortfoliosByIds(ids);
} }
@ -156,7 +157,7 @@ public class PortfolioLuceneServiceImpl implements PortfolioLuceneService {
if ((textFragment != null) && (textFragment.getScore() > 0)) { if ((textFragment != null) && (textFragment.getScore() > 0)) {
// if ((frag[j] != null)) { // if ((frag[j] != null)) {
// 获取 summary 的值 // 获取 summary 的值
sb.append(textFragment.toString()); sb.append(textFragment);
} }
} }
// 获取到title // 获取到title
@ -172,7 +173,7 @@ public class PortfolioLuceneServiceImpl implements PortfolioLuceneService {
} }
resList.add( resList.add(
PortfolioLucene.builder() PortfolioLucene.builder()
.idPortfolio(hitDoc.get("id")) .idPortfolio(Long.valueOf(hitDoc.get("id")))
.portfolioTitle(titleValue.toString()) .portfolioTitle(titleValue.toString())
.portfolioDescription(sb.toString()) .portfolioDescription(sb.toString())
.score(String.valueOf(score)) .score(String.valueOf(score))

View File

@ -161,7 +161,7 @@ public class UserLuceneServiceImpl implements UserLuceneService {
} }
resList.add( resList.add(
UserLucene.builder() UserLucene.builder()
.idUser(Integer.valueOf(hitDoc.get("id"))) .idUser(Long.valueOf(hitDoc.get("id")))
.nickname(titleValue.toString()) .nickname(titleValue.toString())
.signature(baikeValue.toString()) .signature(baikeValue.toString())
.score(String.valueOf(score)) .score(String.valueOf(score))
@ -182,7 +182,7 @@ public class UserLuceneServiceImpl implements UserLuceneService {
} }
@Override @Override
public List<UserDTO> getUsersByIds(Integer[] ids) { public List<UserDTO> getUsersByIds(Long[] ids) {
return userLuceneMapper.getUsersByIds(ids); return userLuceneMapper.getUsersByIds(ids);
} }
} }

View File

@ -1,7 +1,6 @@
package com.rymcu.forest.lucene.util; package com.rymcu.forest.lucene.util;
import cn.hutool.core.io.FileUtil; import cn.hutool.core.io.FileUtil;
import cn.hutool.core.util.StrUtil;
import com.rymcu.forest.lucene.model.ArticleLucene; import com.rymcu.forest.lucene.model.ArticleLucene;
import org.apache.lucene.document.Document; import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field; import org.apache.lucene.document.Field;
@ -12,6 +11,7 @@ import org.apache.lucene.index.Term;
import java.io.IOException; import java.io.IOException;
import java.util.Arrays; import java.util.Arrays;
import java.util.concurrent.locks.ReentrantLock;
/** /**
* 文章索引更新工具类 * 文章索引更新工具类
@ -20,65 +20,85 @@ import java.util.Arrays;
*/ */
public class ArticleIndexUtil { public class ArticleIndexUtil {
/** lucene索引保存目录 */ /**
private static final String PATH = * lucene索引保存目录
System.getProperty("user.dir") + StrUtil.SLASH + LucenePath.ARTICLE_INDEX_PATH; */
private static final String PATH =
System.getProperty("user.dir") + LucenePath.ARTICLE_INDEX_PATH;
/** 删除所有运行中保存的索引 */ /**
public static void deleteAllIndex() { * 删除所有运行中保存的索引
if (FileUtil.exist(LucenePath.ARTICLE_INCREMENT_INDEX_PATH)) { */
FileUtil.del(LucenePath.ARTICLE_INCREMENT_INDEX_PATH); public static void deleteAllIndex() {
if (FileUtil.exist(LucenePath.ARTICLE_INCREMENT_INDEX_PATH)) {
FileUtil.del(LucenePath.ARTICLE_INCREMENT_INDEX_PATH);
}
} }
}
public static void addIndex(ArticleLucene t) { public static void addIndex(ArticleLucene t) {
creatIndex(t); creatIndex(t);
}
public static void updateIndex(ArticleLucene t) {
deleteIndex(t.getIdArticle());
creatIndex(t);
}
/**
* 增加或创建单个索引
*
* @param t
* @throws Exception
*/
private static synchronized void creatIndex(ArticleLucene t) {
System.out.println("创建单个索引");
IndexWriter writer;
try {
writer = IndexUtil.getIndexWriter(LucenePath.ARTICLE_INCREMENT_INDEX_PATH, false);
Document doc = new Document();
doc.add(new StringField("id", t.getIdArticle() + "", Field.Store.YES));
doc.add(new TextField("title", t.getArticleTitle(), Field.Store.YES));
doc.add(new TextField("summary", t.getArticleContent(), Field.Store.YES));
writer.addDocument(doc);
writer.close();
} catch (IOException e) {
e.printStackTrace();
} }
}
/** 删除单个索引 */ public static void updateIndex(ArticleLucene t) {
public static synchronized void deleteIndex(String id) { deleteIndex(t.getIdArticle());
Arrays.stream(FileUtil.ls(PATH)) creatIndex(t);
.forEach( }
each -> {
if (each.isDirectory()) { /**
IndexWriter writer; * 增加或创建单个索引
try { *
writer = IndexUtil.getIndexWriter(each.getAbsolutePath(), false); * @param t
writer.deleteDocuments(new Term("id", id)); * @throws Exception
writer.forceMergeDeletes(); // 强制删除 */
writer.commit(); private static void creatIndex(ArticleLucene t) {
writer.close(); System.out.printf("创建单个索引");
} catch (IOException e) { IndexWriter writer;
e.printStackTrace(); ReentrantLock reentrantLock = new ReentrantLock();
} reentrantLock.lock();
} try {
}); boolean create = true;
} if (FileUtil.exist(LucenePath.ARTICLE_INCREMENT_INDEX_PATH)) {
create = false;
}
writer = IndexUtil.getIndexWriter(LucenePath.ARTICLE_INCREMENT_INDEX_PATH, create);
Document doc = new Document();
doc.add(new StringField("id", t.getIdArticle() + "", Field.Store.YES));
doc.add(new TextField("title", t.getArticleTitle(), Field.Store.YES));
doc.add(new TextField("summary", t.getArticleContent(), Field.Store.YES));
writer.addDocument(doc);
writer.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
reentrantLock.unlock();
}
}
/**
* 删除单个索引
*/
public static void deleteIndex(Long id) {
Arrays.stream(FileUtil.ls(PATH))
.forEach(
each -> {
if (each.isDirectory()) {
IndexWriter writer;
ReentrantLock reentrantLock = new ReentrantLock();
reentrantLock.lock();
try {
writer = IndexUtil.getIndexWriter(each.getAbsolutePath(), false);
writer.deleteDocuments(new Term("id", String.valueOf(id)));
writer.forceMerge(1);
// 强制删除
writer.forceMergeDeletes();
writer.commit();
writer.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
reentrantLock.unlock();
}
}
});
}
} }

View File

@ -8,7 +8,7 @@ package com.rymcu.forest.lucene.util;
public final class LucenePath { public final class LucenePath {
/** lucene 目录 */ /** lucene 目录 */
public static final String INDEX_PATH = "lucene/index"; public static final String INDEX_PATH = "/lucene/index";
/** 文章 lucene 目录 */ /** 文章 lucene 目录 */
public static final String ARTICLE_INDEX_PATH = INDEX_PATH + "/article"; public static final String ARTICLE_INDEX_PATH = INDEX_PATH + "/article";

View File

@ -63,7 +63,7 @@ public class PortfolioIndexUtil {
} }
/** 删除单个索引 */ /** 删除单个索引 */
public static synchronized void deleteIndex(String id) { public static synchronized void deleteIndex(Long id) {
Arrays.stream(FileUtil.ls(PATH)) Arrays.stream(FileUtil.ls(PATH))
.forEach( .forEach(
each -> { each -> {
@ -71,7 +71,7 @@ public class PortfolioIndexUtil {
IndexWriter writer; IndexWriter writer;
try { try {
writer = IndexUtil.getIndexWriter(each.getAbsolutePath(), false); writer = IndexUtil.getIndexWriter(each.getAbsolutePath(), false);
writer.deleteDocuments(new Term("id", id)); writer.deleteDocuments(new Term("id", String.valueOf(id)));
writer.forceMergeDeletes(); // 强制删除 writer.forceMergeDeletes(); // 强制删除
writer.commit(); writer.commit();
writer.close(); writer.close();

View File

@ -30,7 +30,7 @@ public interface ArticleMapper extends Mapper<Article> {
* @param type * @param type
* @return * @return
*/ */
ArticleDTO selectArticleDTOById(@Param("id") Integer id, @Param("type") int type); ArticleDTO selectArticleDTOById(@Param("id") Long id, @Param("type") int type);
/** /**
* 保存文章内容 * 保存文章内容
@ -39,7 +39,7 @@ public interface ArticleMapper extends Mapper<Article> {
* @param articleContentHtml * @param articleContentHtml
* @return * @return
*/ */
Integer insertArticleContent(@Param("idArticle") Integer idArticle, @Param("articleContent") String articleContent, @Param("articleContentHtml") String articleContentHtml); Integer insertArticleContent(@Param("idArticle") Long idArticle, @Param("articleContent") String articleContent, @Param("articleContentHtml") String articleContentHtml);
/** /**
* 更新文章内容 * 更新文章内容
@ -48,14 +48,14 @@ public interface ArticleMapper extends Mapper<Article> {
* @param articleContentHtml * @param articleContentHtml
* @return * @return
*/ */
Integer updateArticleContent(@Param("idArticle") Integer idArticle, @Param("articleContent") String articleContent, @Param("articleContentHtml") String articleContentHtml); Integer updateArticleContent(@Param("idArticle") Long idArticle, @Param("articleContent") String articleContent, @Param("articleContentHtml") String articleContentHtml);
/** /**
* 获取文章正文内容 * 获取文章正文内容
* @param idArticle * @param idArticle
* @return * @return
*/ */
ArticleContent selectArticleContent(@Param("idArticle") Integer idArticle); ArticleContent selectArticleContent(@Param("idArticle") Long idArticle);
/** /**
* 获取主题下文章列表 * 获取主题下文章列表
@ -76,21 +76,21 @@ public interface ArticleMapper extends Mapper<Article> {
* @param idUser * @param idUser
* @return * @return
*/ */
List<ArticleDTO> selectUserArticles(@Param("idUser") Integer idUser); List<ArticleDTO> selectUserArticles(@Param("idUser") Long idUser);
/** /**
* 删除文章标签 * 删除文章标签
* @param id * @param id
* @return * @return
*/ */
Integer deleteTagArticle(@Param("id") Integer id); Integer deleteTagArticle(@Param("id") Long id);
/** /**
* 获取文章标签列表 * 获取文章标签列表
* @param idArticle * @param idArticle
* @return * @return
*/ */
List<ArticleTagDTO> selectTags(@Param("idArticle") Integer idArticle); List<ArticleTagDTO> selectTags(@Param("idArticle") Long idArticle);
/** /**
* 更新文章浏览数 * 更新文章浏览数
@ -98,28 +98,28 @@ public interface ArticleMapper extends Mapper<Article> {
* @param articleViewCount * @param articleViewCount
* @return * @return
*/ */
Integer updateArticleViewCount(@Param("id") Integer id, @Param("articleViewCount") Integer articleViewCount); Integer updateArticleViewCount(@Param("id") Long id, @Param("articleViewCount") Integer articleViewCount);
/** /**
* 获取草稿列表 * 获取草稿列表
* @param idUser * @param idUser
* @return * @return
*/ */
List<ArticleDTO> selectDrafts(@Param("idUser") Integer idUser); List<ArticleDTO> selectDrafts(@Param("idUser") Long idUser);
/** /**
* 删除未使用的文章标签 * 删除未使用的文章标签
* @param idArticleTag * @param idArticleTag
* @return * @return
*/ */
Integer deleteUnusedArticleTag(@Param("idArticleTag") Integer idArticleTag); Integer deleteUnusedArticleTag(@Param("idArticleTag") Long idArticleTag);
/** /**
* 查询作品集下文章 * 查询作品集下文章
* @param idPortfolio * @param idPortfolio
* @return * @return
*/ */
List<ArticleDTO> selectArticlesByIdPortfolio(@Param("idPortfolio") Integer idPortfolio); List<ArticleDTO> selectArticlesByIdPortfolio(@Param("idPortfolio") Long idPortfolio);
/** /**
* 查询作品集未绑定文章 * 查询作品集未绑定文章
@ -128,14 +128,14 @@ public interface ArticleMapper extends Mapper<Article> {
* @param idUser * @param idUser
* @return * @return
*/ */
List<ArticleDTO> selectUnbindArticlesByIdPortfolio(@Param("idPortfolio") Integer idPortfolio, @Param("searchText") String searchText, @Param("idUser") Integer idUser); List<ArticleDTO> selectUnbindArticlesByIdPortfolio(@Param("idPortfolio") Long idPortfolio, @Param("searchText") String searchText, @Param("idUser") Long idUser);
/** /**
* 查询文章所属作品集列表 * 查询文章所属作品集列表
* @param idArticle * @param idArticle
* @return * @return
*/ */
List<PortfolioArticleDTO> selectPortfolioArticles(@Param("idArticle") Integer idArticle); List<PortfolioArticleDTO> selectPortfolioArticles(@Param("idArticle") Long idArticle);
/** /**
* 更新文章标签 * 更新文章标签
@ -143,21 +143,21 @@ public interface ArticleMapper extends Mapper<Article> {
* @param tags * @param tags
* @return * @return
*/ */
Integer updateArticleTags(@Param("idArticle") Integer idArticle, @Param("tags") String tags); Integer updateArticleTags(@Param("idArticle") Long idArticle, @Param("tags") String tags);
/** /**
* 判断是否有评论 * 判断是否有评论
* @param id * @param id
* @return * @return
*/ */
boolean existsCommentWithPrimaryKey(@Param("id") Integer id); boolean existsCommentWithPrimaryKey(@Param("id") Long id);
/** /**
* 删除关联作品集数据 * 删除关联作品集数据
* @param id * @param id
* @return * @return
*/ */
Integer deleteLinkedPortfolioData(@Param("id") Integer id); Integer deleteLinkedPortfolioData(@Param("id") Long id);
/** /**
* 更新文章连接及预览内容 * 更新文章连接及预览内容
@ -167,7 +167,7 @@ public interface ArticleMapper extends Mapper<Article> {
* @param articlePreviewContent * @param articlePreviewContent
* @return * @return
*/ */
Integer updateArticleLinkAndPreviewContent(@Param("idArticle") Integer idArticle, @Param("articleLink") String articleLink, @Param("articlePermalink") String articlePermalink, @Param("articlePreviewContent") String articlePreviewContent); Integer updateArticleLinkAndPreviewContent(@Param("idArticle") Long idArticle, @Param("articleLink") String articleLink, @Param("articlePermalink") String articlePermalink, @Param("articlePreviewContent") String articlePreviewContent);
/** /**
* 根据专题主键及当前文章排序号获取专题下文章大纲 * 根据专题主键及当前文章排序号获取专题下文章大纲
@ -175,7 +175,7 @@ public interface ArticleMapper extends Mapper<Article> {
* @param sortNo * @param sortNo
* @return * @return
*/ */
List<ArticleDTO> selectPortfolioArticlesByIdPortfolioAndSortNo(@Param("idPortfolio") Integer idPortfolio, @Param("sortNo") Integer sortNo); List<ArticleDTO> selectPortfolioArticlesByIdPortfolioAndSortNo(@Param("idPortfolio") Long idPortfolio, @Param("sortNo") Integer sortNo);
/** /**
* 更新文章优选状态 * 更新文章优选状态
@ -183,13 +183,13 @@ public interface ArticleMapper extends Mapper<Article> {
* @param articlePerfect * @param articlePerfect
* @return * @return
*/ */
int updatePerfect(@Param("idArticle") Integer idArticle, @Param("articlePerfect") String articlePerfect); int updatePerfect(@Param("idArticle") Long idArticle, @Param("articlePerfect") String articlePerfect);
/** /**
* 删除文章关联文章内容表信息 * 删除文章关联文章内容表信息
* @param idArticle * @param idArticle
*/ */
void deleteArticleContent(@Param("idArticle") Integer idArticle); void deleteArticleContent(@Param("idArticle") Long idArticle);
/** /**
* 获取公告 * 获取公告

View File

@ -14,5 +14,5 @@ public interface ArticleThumbsUpMapper extends Mapper<ArticleThumbsUp> {
* @param thumbsUpNumber * @param thumbsUpNumber
* @return * @return
*/ */
Integer updateArticleThumbsUpNumber(@Param("idArticle") Integer idArticle, @Param("thumbsUpNumber") Integer thumbsUpNumber); Integer updateArticleThumbsUpNumber(@Param("idArticle") Long idArticle, @Param("thumbsUpNumber") Integer thumbsUpNumber);
} }

View File

@ -25,7 +25,7 @@ public interface BankAccountMapper extends Mapper<BankAccount> {
* @param idBank * @param idBank
* @return * @return
*/ */
BankAccountDTO selectBankAccount(@Param("idBank") Integer idBank); BankAccountDTO selectBankAccount(@Param("idBank") Long idBank);
/** /**
* 获取当前最大卡号 * 获取当前最大卡号
@ -39,4 +39,11 @@ public interface BankAccountMapper extends Mapper<BankAccount> {
* @return * @return
*/ */
BankAccountDTO selectByBankAccount(@Param("bankAccount") String bankAccount); BankAccountDTO selectByBankAccount(@Param("bankAccount") String bankAccount);
/**
* 查询用户个人银行账户信息
* @param idUser
* @return
*/
BankAccountDTO findPersonBankAccountByIdUser(@Param("idUser") Long idUser);
} }

View File

@ -39,7 +39,7 @@ public interface CommentMapper extends Mapper<Comment> {
* @param commentSharpUrl * @param commentSharpUrl
* @return * @return
*/ */
Integer updateCommentSharpUrl(@Param("idComment") Integer idComment, @Param("commentSharpUrl") String commentSharpUrl); Integer updateCommentSharpUrl(@Param("idComment") Long idComment, @Param("commentSharpUrl") String commentSharpUrl);
/** /**
* 获取评论列表数据 * 获取评论列表数据

View File

@ -18,19 +18,19 @@ public interface FollowMapper extends Mapper<Follow> {
* @param followingType * @param followingType
* @return * @return
*/ */
Boolean isFollow(@Param("followingId") Integer followingId, @Param("followerId") Integer followerId, @Param("followingType") String followingType); Boolean isFollow(@Param("followingId") Integer followingId, @Param("followerId") Long followerId, @Param("followingType") String followingType);
/** /**
* 查询用户粉丝 * 查询用户粉丝
* @param idUser * @param idUser
* @return * @return
*/ */
List<UserDTO> selectUserFollowersByUser(@Param("idUser") Integer idUser); List<UserDTO> selectUserFollowersByUser(@Param("idUser") Long idUser);
/** /**
* 查询用户关注用户 * 查询用户关注用户
* @param idUser * @param idUser
* @return * @return
*/ */
List<UserDTO> selectUserFollowingsByUser(@Param("idUser") Integer idUser); List<UserDTO> selectUserFollowingsByUser(@Param("idUser") Long idUser);
} }

View File

@ -17,14 +17,14 @@ public interface NotificationMapper extends Mapper<Notification> {
* @param idUser * @param idUser
* @return * @return
*/ */
List<Notification> selectUnreadNotifications(@Param("idUser") Integer idUser); List<Notification> selectUnreadNotifications(@Param("idUser") Long idUser);
/** /**
* 获取消息数据 * 获取消息数据
* @param idUser * @param idUser
* @return * @return
*/ */
List<NotificationDTO> selectNotifications(@Param("idUser") Integer idUser); List<NotificationDTO> selectNotifications(@Param("idUser") Long idUser);
/** /**
* 获取消息数据 * 获取消息数据
@ -33,7 +33,7 @@ public interface NotificationMapper extends Mapper<Notification> {
* @param dataType * @param dataType
* @return * @return
*/ */
Notification selectNotification(@Param("idUser") Integer idUser, @Param("dataId") Integer dataId, @Param("dataType") String dataType); Notification selectNotification(@Param("idUser") Long idUser, @Param("dataId") Long dataId, @Param("dataType") String dataType);
/** /**
* 创建消息通知 * 创建消息通知
@ -43,21 +43,21 @@ public interface NotificationMapper extends Mapper<Notification> {
* @param dataSummary * @param dataSummary
* @return * @return
*/ */
Integer insertNotification(@Param("idUser") Integer idUser, @Param("dataId") Integer dataId, @Param("dataType") String dataType, @Param("dataSummary") String dataSummary); Integer insertNotification(@Param("idUser") Long idUser, @Param("dataId") Long dataId, @Param("dataType") String dataType, @Param("dataSummary") String dataSummary);
/** /**
* 标记消息已读 * 标记消息已读
* @param id * @param id
* @return * @return
*/ */
Integer readNotification(@Param("id") Integer id); Integer readNotification(@Param("id") Long id);
/** /**
* 标记所有消息已读 * 标记所有消息已读
* @param idUser * @param idUser
* @return * @return
*/ */
Integer readAllNotification(@Param("idUser") Integer idUser); Integer readAllNotification(@Param("idUser") Long idUser);
/** /**
* 删除相关未读消息 * 删除相关未读消息
@ -65,5 +65,5 @@ public interface NotificationMapper extends Mapper<Notification> {
* @param dataType * @param dataType
* @return * @return
*/ */
Integer deleteUnreadNotification(@Param("dataId") Integer dataId, @Param("dataType") String dataType); Integer deleteUnreadNotification(@Param("dataId") Long dataId, @Param("dataType") String dataType);
} }

View File

@ -8,5 +8,5 @@ import java.util.List;
public interface PermissionMapper extends Mapper<Permission> { public interface PermissionMapper extends Mapper<Permission> {
List<Permission> selectMenuByIdRole(@Param("role") Integer role); List<Permission> selectMenuByIdRole(@Param("role") Long role);
} }

View File

@ -16,7 +16,7 @@ public interface PortfolioMapper extends Mapper<Portfolio> {
* @param idUser * @param idUser
* @return * @return
*/ */
List<PortfolioDTO> selectUserPortfoliosByIdUser(@Param("idUser") Integer idUser); List<PortfolioDTO> selectUserPortfoliosByIdUser(@Param("idUser") Long idUser);
/** /**
* 查询作品集 * 查询作品集
@ -24,14 +24,14 @@ public interface PortfolioMapper extends Mapper<Portfolio> {
* @param type * @param type
* @return * @return
*/ */
PortfolioDTO selectPortfolioDTOById(@Param("id") Integer id, @Param("type") Integer type); PortfolioDTO selectPortfolioDTOById(@Param("id") Long id, @Param("type") Integer type);
/** /**
* 统计作品集下文章数 * 统计作品集下文章数
* @param idPortfolio * @param idPortfolio
* @return * @return
*/ */
Integer selectCountArticleNumber(@Param("idPortfolio") Integer idPortfolio); Integer selectCountArticleNumber(@Param("idPortfolio") Long idPortfolio);
/** /**
* 查询文章是否已绑定 * 查询文章是否已绑定
@ -39,7 +39,7 @@ public interface PortfolioMapper extends Mapper<Portfolio> {
* @param idPortfolio * @param idPortfolio
* @return * @return
*/ */
Integer selectCountPortfolioArticle(@Param("idArticle") Integer idArticle, @Param("idPortfolio") Integer idPortfolio); Integer selectCountPortfolioArticle(@Param("idArticle") Long idArticle, @Param("idPortfolio") Long idPortfolio);
/** /**
* 插入文章与作品集绑定数据 * 插入文章与作品集绑定数据
@ -48,14 +48,14 @@ public interface PortfolioMapper extends Mapper<Portfolio> {
* @param maxSortNo * @param maxSortNo
* @return * @return
*/ */
Integer insertPortfolioArticle(@Param("idArticle") Integer idArticle, @Param("idPortfolio") Integer idPortfolio, @Param("maxSortNo") Integer maxSortNo); Integer insertPortfolioArticle(@Param("idArticle") Long idArticle, @Param("idPortfolio") Long idPortfolio, @Param("maxSortNo") Integer maxSortNo);
/** /**
* 查询作品集下最大排序号 * 查询作品集下最大排序号
* @param idPortfolio * @param idPortfolio
* @return * @return
*/ */
Integer selectMaxSortNo(@Param("idPortfolio") Integer idPortfolio); Integer selectMaxSortNo(@Param("idPortfolio") Long idPortfolio);
/** /**
* 更新文章排序号 * 更新文章排序号
@ -64,7 +64,7 @@ public interface PortfolioMapper extends Mapper<Portfolio> {
* @param sortNo * @param sortNo
* @return * @return
*/ */
Integer updateArticleSortNo(@Param("idPortfolio") Integer idPortfolio, @Param("idArticle") Integer idArticle, @Param("sortNo") Integer sortNo); Integer updateArticleSortNo(@Param("idPortfolio") Long idPortfolio, @Param("idArticle") Long idArticle, @Param("sortNo") Integer sortNo);
/** /**
* 取消绑定文章 * 取消绑定文章
@ -72,7 +72,7 @@ public interface PortfolioMapper extends Mapper<Portfolio> {
* @param idArticle * @param idArticle
* @return * @return
*/ */
Integer unbindArticle(@Param("idPortfolio") Integer idPortfolio, @Param("idArticle") Integer idArticle); Integer unbindArticle(@Param("idPortfolio") Long idPortfolio, @Param("idArticle") Long idArticle);
/** /**
* 获取作品集列表数据 * 获取作品集列表数据

View File

@ -8,11 +8,11 @@ import java.util.List;
public interface RoleMapper extends Mapper<Role> { public interface RoleMapper extends Mapper<Role> {
List<Role> selectRoleByIdUser(@Param("id") Integer id); List<Role> selectRoleByIdUser(@Param("id") Long id);
Role selectRoleByInputCode(@Param("inputCode") String inputCode); Role selectRoleByInputCode(@Param("inputCode") String inputCode);
Integer updateStatus(@Param("idRole") Integer idRole, @Param("status") String status); Integer updateStatus(@Param("idRole") Long idRole, @Param("status") String status);
Integer update(@Param("idRole") Integer idRole, @Param("name") String name, @Param("inputCode") String inputCode, @Param("weights") Integer weights); Integer update(@Param("idRole") Long idRole, @Param("name") String name, @Param("inputCode") String inputCode, @Param("weights") Integer weights);
} }

View File

@ -13,5 +13,5 @@ public interface SponsorMapper extends Mapper<Sponsor> {
* @param idArticle * @param idArticle
* @return * @return
*/ */
Integer updateArticleSponsorCount(@Param("idArticle") Integer idArticle); Integer updateArticleSponsorCount(@Param("idArticle") Long idArticle);
} }

View File

@ -18,7 +18,7 @@ public interface TagMapper extends Mapper<Tag> {
* @param idArticle * @param idArticle
* @return * @return
*/ */
Integer insertTagArticle(@Param("idTag") Integer idTag, @Param("idArticle") Integer idArticle); Integer insertTagArticle(@Param("idTag") Long idTag, @Param("idArticle") Long idArticle);
/** /**
* 统计标签使用数(文章) * 统计标签使用数(文章)
@ -26,7 +26,7 @@ public interface TagMapper extends Mapper<Tag> {
* @param idArticle * @param idArticle
* @return * @return
*/ */
Integer selectCountTagArticleById(@Param("idTag") Integer idTag, @Param("idArticle") Integer idArticle); Integer selectCountTagArticleById(@Param("idTag") Long idTag, @Param("idArticle") Long idArticle);
/** /**
* 获取用户标签数 * 获取用户标签数
@ -34,7 +34,7 @@ public interface TagMapper extends Mapper<Tag> {
* @param idTag * @param idTag
* @return * @return
*/ */
Integer selectCountUserTagById(@Param("idUser") Integer idUser, @Param("idTag") Integer idTag); Integer selectCountUserTagById(@Param("idUser") Long idUser, @Param("idTag") Long idTag);
/** /**
* 插入用户标签信息 * 插入用户标签信息
@ -43,7 +43,7 @@ public interface TagMapper extends Mapper<Tag> {
* @param type * @param type
* @return * @return
*/ */
Integer insertUserTag(@Param("idTag") Integer idTag, @Param("idUser") Integer idUser, @Param("type") Integer type); Integer insertUserTag(@Param("idTag") Long idTag, @Param("idUser") Long idUser, @Param("type") Integer type);
/** /**
* 删除未使用标签 * 删除未使用标签
@ -61,7 +61,7 @@ public interface TagMapper extends Mapper<Tag> {
* @param tagReservation * @param tagReservation
* @return * @return
*/ */
Integer update(@Param("idTag") Integer idTag, @Param("tagUri") String tagUri, @Param("tagIconPath") String tagIconPath, @Param("tagStatus") String tagStatus, @Param("tagDescription") String tagDescription, @Param("tagReservation") String tagReservation); Integer update(@Param("idTag") Long idTag, @Param("tagUri") String tagUri, @Param("tagIconPath") String tagIconPath, @Param("tagStatus") String tagStatus, @Param("tagDescription") String tagDescription, @Param("tagReservation") String tagReservation);
/** /**
* 查询标签列表 * 查询标签列表

View File

@ -44,21 +44,21 @@ public interface TopicMapper extends Mapper<Topic> {
* @param topicDescriptionHtml * @param topicDescriptionHtml
* @return * @return
*/ */
Integer update(@Param("idTopic") Integer idTopic, @Param("topicTitle") String topicTitle, @Param("topicUri") String topicUri, @Param("topicIconPath") String topicIconPath, @Param("topicNva") String topicNva, @Param("topicStatus") String topicStatus, @Param("topicSort") Integer topicSort, @Param("topicDescription") String topicDescription, @Param("topicDescriptionHtml") String topicDescriptionHtml); Integer update(@Param("idTopic") Long idTopic, @Param("topicTitle") String topicTitle, @Param("topicUri") String topicUri, @Param("topicIconPath") String topicIconPath, @Param("topicNva") String topicNva, @Param("topicStatus") String topicStatus, @Param("topicSort") Integer topicSort, @Param("topicDescription") String topicDescription, @Param("topicDescriptionHtml") String topicDescriptionHtml);
/** /**
* @param idTopic * @param idTopic
* @param tagTitle * @param tagTitle
* @return * @return
*/ */
List<Tag> selectUnbindTagsById(@Param("idTopic") Integer idTopic, @Param("tagTitle") String tagTitle); List<Tag> selectUnbindTagsById(@Param("idTopic") Long idTopic, @Param("tagTitle") String tagTitle);
Integer insertTopicTag(@Param("idTopic") Integer idTopic, @Param("idTag") Integer idTag); Integer insertTopicTag(@Param("idTopic") Long idTopic, @Param("idTag") Long idTag);
/** /**
* @param idTopic * @param idTopic
* @param idTag * @param idTag
* @return * @return
*/ */
Integer deleteTopicTag(@Param("idTopic") Integer idTopic, @Param("idTag") Integer idTag); Integer deleteTopicTag(@Param("idTopic") Long idTopic, @Param("idTag") Long idTag);
} }

View File

@ -28,7 +28,7 @@ public interface UserMapper extends Mapper<User> {
* @param idRole * @param idRole
* @return * @return
*/ */
Integer insertUserRole(@Param("idUser") Integer idUser, @Param("idRole") Integer idRole); Integer insertUserRole(@Param("idUser") Long idUser, @Param("idRole") Long idRole);
/** /**
* 根据账号获取获取用户信息 * 根据账号获取获取用户信息
@ -57,7 +57,7 @@ public interface UserMapper extends Mapper<User> {
* @param idUser * @param idUser
* @return * @return
*/ */
Integer selectRoleWeightsByUser(@Param("idUser") Integer idUser); Integer selectRoleWeightsByUser(@Param("idUser") Long idUser);
/** /**
* 更新用户权限 * 更新用户权限
@ -65,7 +65,7 @@ public interface UserMapper extends Mapper<User> {
* @param idRole * @param idRole
* @return * @return
*/ */
Integer updateUserRole(@Param("idUser") Integer idUser, @Param("idRole") Integer idRole); Integer updateUserRole(@Param("idUser") Long idUser, @Param("idRole") Long idRole);
/** /**
* 更新用户状态 * 更新用户状态
@ -73,7 +73,7 @@ public interface UserMapper extends Mapper<User> {
* @param status * @param status
* @return * @return
*/ */
Integer updateStatus(@Param("idUser") Integer idUser, @Param("status") String status); Integer updateStatus(@Param("idUser") Long idUser, @Param("status") String status);
/** /**
* 根据昵称获取重名用户数量 * 根据昵称获取重名用户数量
@ -87,7 +87,7 @@ public interface UserMapper extends Mapper<User> {
* @param idUser * @param idUser
* @return * @return
*/ */
UserInfoDTO selectUserInfo(@Param("idUser") Integer idUser); UserInfoDTO selectUserInfo(@Param("idUser") Long idUser);
/** /**
* 更新用户信息 * 更新用户信息
@ -99,7 +99,7 @@ public interface UserMapper extends Mapper<User> {
* @param sex * @param sex
* @return * @return
*/ */
Integer updateUserInfo(@Param("idUser") Integer idUser, @Param("nickname") String nickname, @Param("avatarType") String avatarType, @Param("avatarUrl") String avatarUrl, @Param("signature") String signature, @Param("sex") String sex); Integer updateUserInfo(@Param("idUser") Long idUser, @Param("nickname") String nickname, @Param("avatarType") String avatarType, @Param("avatarUrl") String avatarUrl, @Param("signature") String signature, @Param("sex") String sex);
/** /**
* 验证昵称是否重复 * 验证昵称是否重复
@ -107,20 +107,20 @@ public interface UserMapper extends Mapper<User> {
* @param nickname * @param nickname
* @return * @return
*/ */
Integer checkNicknameByIdUser(@Param("idUser") Integer idUser, @Param("nickname") String nickname); Integer checkNicknameByIdUser(@Param("idUser") Long idUser, @Param("nickname") String nickname);
/** /**
* 根据用户 ID 获取作者信息 * 根据用户 ID 获取作者信息
* @param id * @param id
* @return * @return
*/ */
Author selectAuthor(@Param("id") Integer id); Author selectAuthor(@Param("id") Long id);
/** /**
* 更新用户最后登录时间 * 更新用户最后登录时间
* @param idUser * @param idUser
* @return * @return
*/ */
Integer updateLastLoginTime(@Param("idUser") Integer idUser); Integer updateLastLoginTime(@Param("idUser") Long idUser);
/** /**
* 更换邮箱 * 更换邮箱
@ -128,7 +128,7 @@ public interface UserMapper extends Mapper<User> {
* @param email * @param email
* @return * @return
*/ */
Integer updateEmail(@Param("idUser") Integer idUser, @Param("email") String email); Integer updateEmail(@Param("idUser") Long idUser, @Param("email") String email);
/** /**
* 更新密码 * 更新密码
@ -136,7 +136,7 @@ public interface UserMapper extends Mapper<User> {
* @param password * @param password
* @return * @return
*/ */
Integer updatePasswordById(@Param("idUser") Integer idUser, @Param("password") String password); Integer updatePasswordById(@Param("idUser") Long idUser, @Param("password") String password);
/** /**
* 查询用户数据 * 查询用户数据

View File

@ -4,12 +4,11 @@ import com.rymcu.forest.core.service.Service;
import com.rymcu.forest.dto.ArticleDTO; import com.rymcu.forest.dto.ArticleDTO;
import com.rymcu.forest.dto.ArticleSearchDTO; import com.rymcu.forest.dto.ArticleSearchDTO;
import com.rymcu.forest.entity.Article; import com.rymcu.forest.entity.Article;
import com.rymcu.forest.entity.User;
import com.rymcu.forest.web.api.exception.BaseApiException; import com.rymcu.forest.web.api.exception.BaseApiException;
import javax.servlet.http.HttpServletRequest;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.util.List; import java.util.List;
import java.util.Map;
/** /**
* @author ronger * @author ronger
@ -29,7 +28,7 @@ public interface ArticleService extends Service<Article> {
* @param type * @param type
* @return * @return
* */ * */
ArticleDTO findArticleDTOById(Integer id, Integer type); ArticleDTO findArticleDTOById(Long id, Integer type);
/** /**
* 查询主题下文章列表 * 查询主题下文章列表
@ -50,17 +49,17 @@ public interface ArticleService extends Service<Article> {
* @param idUser * @param idUser
* @return * @return
* */ * */
List<ArticleDTO> findUserArticlesByIdUser(Integer idUser); List<ArticleDTO> findUserArticlesByIdUser(Long idUser);
/** /**
* 新增/更新文章 * 新增/更新文章
* @param article * @param article
* @param request * @param user
* @throws UnsupportedEncodingException * @throws UnsupportedEncodingException
* @throws BaseApiException * @throws BaseApiException
* @return * @return
* */ * */
Map postArticle(ArticleDTO article, HttpServletRequest request) throws UnsupportedEncodingException, BaseApiException; Long postArticle(ArticleDTO article, User user) throws UnsupportedEncodingException, BaseApiException;
/** /**
* 删除文章 * 删除文章
@ -68,13 +67,13 @@ public interface ArticleService extends Service<Article> {
* @return * @return
* @throws BaseApiException * @throws BaseApiException
* */ * */
Map delete(Integer id) throws BaseApiException; Integer delete(Long id) throws BaseApiException;
/** /**
* 增量文章浏览数 * 增量文章浏览数
* @param id * @param id
*/ */
void incrementArticleViewCount(Integer id); void incrementArticleViewCount(Long id);
/** /**
* 获取分享链接数据 * 获取分享链接数据
@ -82,21 +81,20 @@ public interface ArticleService extends Service<Article> {
* @throws BaseApiException * @throws BaseApiException
* @return * @return
*/ */
Map share(Integer id) throws BaseApiException; String share(Integer id) throws BaseApiException;
/** /**
* 查询草稿文章类别 * 查询草稿文章类别
* @throws BaseApiException
* @return * @return
*/ */
List<ArticleDTO> findDrafts() throws BaseApiException; List<ArticleDTO> findDrafts(Long userId);
/** /**
* 查询作品集下文章 * 查询作品集下文章
* @param idPortfolio * @param idPortfolio
* @return * @return
*/ */
List<ArticleDTO> findArticlesByIdPortfolio(Integer idPortfolio); List<ArticleDTO> findArticlesByIdPortfolio(Long idPortfolio);
/** /**
* 查询作品集下未绑定文章 * 查询作品集下未绑定文章
@ -105,17 +103,18 @@ public interface ArticleService extends Service<Article> {
* @param idUser * @param idUser
* @return * @return
*/ */
List<ArticleDTO> selectUnbindArticles(Integer idPortfolio, String searchText, Integer idUser); List<ArticleDTO> selectUnbindArticles(Long idPortfolio, String searchText, Long idUser);
/** /**
* 更新文章标签 * 更新文章标签
* @param idArticle * @param idArticle
* @param tags * @param tags
* @param userId
* @return * @return
* @throws UnsupportedEncodingException * @throws UnsupportedEncodingException
* @throws BaseApiException * @throws BaseApiException
*/ */
Map updateTags(Integer idArticle, String tags) throws UnsupportedEncodingException, BaseApiException; Boolean updateTags(Long idArticle, String tags, Long userId) throws UnsupportedEncodingException, BaseApiException;
/** /**
* 更新文章优选状态 * 更新文章优选状态
@ -123,7 +122,7 @@ public interface ArticleService extends Service<Article> {
* @param articlePerfect * @param articlePerfect
* @return * @return
*/ */
Map updatePerfect(Integer idArticle, String articlePerfect); Boolean updatePerfect(Long idArticle, String articlePerfect);
/** /**
* 获取公告列表 * 获取公告列表

View File

@ -4,17 +4,15 @@ import com.rymcu.forest.core.service.Service;
import com.rymcu.forest.entity.ArticleThumbsUp; import com.rymcu.forest.entity.ArticleThumbsUp;
import com.rymcu.forest.web.api.exception.BaseApiException; import com.rymcu.forest.web.api.exception.BaseApiException;
import java.util.Map;
/** /**
* @author ronger * @author ronger
*/ */
public interface ArticleThumbsUpService extends Service<ArticleThumbsUp> { public interface ArticleThumbsUpService extends Service<ArticleThumbsUp> {
/** /**
* 点赞 * 点赞
*
* @param articleThumbsUp * @param articleThumbsUp
* @throws BaseApiException
* @return * @return
*/ */
Map thumbsUp(ArticleThumbsUp articleThumbsUp) throws BaseApiException; int thumbsUp(ArticleThumbsUp articleThumbsUp);
} }

View File

@ -24,7 +24,7 @@ public interface BankAccountService extends Service<BankAccount> {
* @param idUser * @param idUser
* @return * @return
*/ */
BankAccountDTO findBankAccountByIdUser(Integer idUser); BankAccountDTO findBankAccountByIdUser(Long idUser);
/** /**
* 根据账户查询银行账户信息 * 根据账户查询银行账户信息

View File

@ -3,11 +3,9 @@ package com.rymcu.forest.service;
import com.rymcu.forest.core.service.Service; import com.rymcu.forest.core.service.Service;
import com.rymcu.forest.dto.CommentDTO; import com.rymcu.forest.dto.CommentDTO;
import com.rymcu.forest.entity.Comment; import com.rymcu.forest.entity.Comment;
import com.rymcu.forest.web.api.exception.BaseApiException;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import java.util.List; import java.util.List;
import java.util.Map;
/** /**
* @author ronger * @author ronger
@ -27,7 +25,7 @@ public interface CommentService extends Service<Comment> {
* @param request * @param request
* @return * @return
*/ */
Map postComment(Comment comment, HttpServletRequest request) throws BaseApiException; Comment postComment(Comment comment, HttpServletRequest request);
/** /**
* 获取评论列表数据 * 获取评论列表数据

View File

@ -42,7 +42,7 @@ public interface FollowService extends Service<Follow> {
* @param followingId * @param followingId
* @return * @return
*/ */
List<Follow> findByFollowingId(String followType, Integer followingId); List<Follow> findByFollowingId(String followType, Long followingId);

View File

@ -18,7 +18,7 @@ public interface LoginRecordService extends Service<LoginRecord> {
* @param idUser * @param idUser
* @return * @return
*/ */
LoginRecord saveLoginRecord(Integer idUser); LoginRecord saveLoginRecord(Long idUser);
/** /**
* 获取用户登录记录 * 获取用户登录记录

View File

@ -17,14 +17,14 @@ public interface NotificationService extends Service<Notification> {
* @param idUser * @param idUser
* @return * @return
*/ */
List<Notification> findUnreadNotifications(Integer idUser); List<Notification> findUnreadNotifications(Long idUser);
/** /**
* 获取消息数据 * 获取消息数据
* @param idUser * @param idUser
* @return * @return
*/ */
List<NotificationDTO> findNotifications(Integer idUser); List<NotificationDTO> findNotifications(Long idUser);
/** /**
* 获取消息数据 * 获取消息数据
@ -33,7 +33,7 @@ public interface NotificationService extends Service<Notification> {
* @param dataType * @param dataType
* @return * @return
*/ */
Notification findNotification(Integer idUser, Integer dataId, String dataType); Notification findNotification(Long idUser, Long dataId, String dataType);
/** /**
* 创建系统通知 * 创建系统通知
@ -43,14 +43,14 @@ public interface NotificationService extends Service<Notification> {
* @param dataSummary * @param dataSummary
* @return * @return
*/ */
Integer save(Integer idUser, Integer dataId, String dataType, String dataSummary); Integer save(Long idUser, Long dataId, String dataType, String dataSummary);
/** /**
* 标记消息已读 * 标记消息已读
* @param id * @param id
* @return * @return
*/ */
Integer readNotification(Integer id); Integer readNotification(Long id);
/** /**
* 标记所有消息已读 * 标记所有消息已读
@ -65,5 +65,5 @@ public interface NotificationService extends Service<Notification> {
* @param dataType * @param dataType
* @return * @return
*/ */
Integer deleteUnreadNotification(Integer dataId, String dataType); Integer deleteUnreadNotification(Long dataId, String dataType);
} }

View File

@ -1,6 +1,9 @@
package com.rymcu.forest.service; package com.rymcu.forest.service;
import com.github.pagehelper.PageInfo;
import com.rymcu.forest.core.exception.ServiceException;
import com.rymcu.forest.core.service.Service; import com.rymcu.forest.core.service.Service;
import com.rymcu.forest.dto.ArticleDTO;
import com.rymcu.forest.dto.PortfolioArticleDTO; import com.rymcu.forest.dto.PortfolioArticleDTO;
import com.rymcu.forest.dto.PortfolioDTO; import com.rymcu.forest.dto.PortfolioDTO;
import com.rymcu.forest.dto.UserDTO; import com.rymcu.forest.dto.UserDTO;
@ -8,7 +11,6 @@ import com.rymcu.forest.entity.Portfolio;
import com.rymcu.forest.web.api.exception.BaseApiException; import com.rymcu.forest.web.api.exception.BaseApiException;
import java.util.List; import java.util.List;
import java.util.Map;
/** /**
* @author ronger * @author ronger
@ -27,7 +29,7 @@ public interface PortfolioService extends Service<Portfolio> {
* @param type * @param type
* @return * @return
*/ */
PortfolioDTO findPortfolioDTOById(Integer idPortfolio, Integer type); PortfolioDTO findPortfolioDTOById(Long idPortfolio, Integer type);
/** /**
* 保持/更新作品集 * 保持/更新作品集
@ -35,48 +37,56 @@ public interface PortfolioService extends Service<Portfolio> {
* @throws BaseApiException * @throws BaseApiException
* @return * @return
*/ */
Portfolio postPortfolio(Portfolio portfolio) throws BaseApiException; Portfolio postPortfolio(Portfolio portfolio);
/** /**
* 查询作品集下未绑定文章 * 查询作品集下未绑定文章
*
* @param page * @param page
* @param rows * @param rows
* @param searchText * @param searchText
* @param idPortfolio * @param idPortfolio
* @throws BaseApiException * @param idUser
* @return * @return
*/ */
Map findUnbindArticles(Integer page, Integer rows, String searchText, Integer idPortfolio) throws BaseApiException; PageInfo<ArticleDTO> findUnbindArticles(Integer page, Integer rows, String searchText, Long idPortfolio, Long idUser);
/** /**
* 绑定文章 * 绑定文章
* @param portfolioArticle * @param portfolioArticle
* @return * @return
* @throws ServiceException
*/ */
Map bindArticle(PortfolioArticleDTO portfolioArticle); boolean bindArticle(PortfolioArticleDTO portfolioArticle) throws ServiceException;
/** /**
* 更新文章排序号 * 更新文章排序号
* @param portfolioArticle * @param portfolioArticle
* @return * @return
* @throws ServiceException
*/ */
Map updateArticleSortNo(PortfolioArticleDTO portfolioArticle); boolean updateArticleSortNo(PortfolioArticleDTO portfolioArticle) throws ServiceException;
/** /**
* 取消绑定文章 * 取消绑定文章
*
* @param idPortfolio * @param idPortfolio
* @param idArticle * @param idArticle
* @return * @return
* @throws ServiceException
*/ */
Map unbindArticle(Integer idPortfolio, Integer idArticle); boolean unbindArticle(Long idPortfolio, Long idArticle) throws ServiceException;
/** /**
* 删除作品集 * 删除作品集
*
* @param idPortfolio * @param idPortfolio
* @param idUser
* @param roleWeights
* @return * @return
*/ */
Map deletePortfolio(Integer idPortfolio) throws BaseApiException; boolean deletePortfolio(Long idPortfolio, Long idUser, Integer roleWeights);
/** /**
* 获取作品集列表数据 * 获取作品集列表数据

Some files were not shown because too many files have changed in this diff Show More