Bläddra i källkod

增加redis配置

郭超 4 år sedan
förälder
incheckning
af4fb85a57
33 ändrade filer med 692 tillägg och 448 borttagningar
  1. 52 0
      logs/crowdsource-backend.log.2021-05-09.log
  2. 6 0
      logs/crowdsource-backend.log.2021-05-10.log
  3. 0 0
      logs/recommend.log.2021-05-10.log
  4. 9 3
      pom.xml
  5. 19 0
      src/main/java/edu/nju/configuration/CustomSessionDefaultRedisSerializer.java
  6. 93 0
      src/main/java/edu/nju/configuration/RedisSessionConfiguration.java
  7. 3 0
      src/main/java/edu/nju/controller/ExtraController.java
  8. 0 0
      src/main/resources/apidoc/V1.0/.cache.json
  9. 107 107
      src/main/resources/apidoc/V1.0/apidoc.log
  10. 15 15
      src/main/resources/apidoc/V1.0/edu_nju_controller_AnalyzeController.html
  11. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_AnnotationController.html
  12. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_CrowdsourcingToReviewController.html
  13. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_DataController.html
  14. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_DeleteController.html
  15. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_ExportController.html
  16. 39 21
      src/main/resources/apidoc/V1.0/edu_nju_controller_ExtraController.html
  17. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_GraphController.html
  18. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_HistoryController.html
  19. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_NodeController.html
  20. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_OAuthController.html
  21. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_OssController.html
  22. 16 16
      src/main/resources/apidoc/V1.0/edu_nju_controller_RecommendController.html
  23. 14 15
      src/main/resources/apidoc/V1.0/edu_nju_controller_RelationController.html
  24. 15 15
      src/main/resources/apidoc/V1.0/edu_nju_controller_ReportController.html
  25. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewAnalyzeController.html
  26. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewController.html
  27. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewJobController.html
  28. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewPaperController.html
  29. 14 14
      src/main/resources/apidoc/V1.0/edu_nju_controller_UploadController.html
  30. 14 14
      src/main/resources/apidoc/V1.0/index.html
  31. 18 12
      src/main/resources/apidoc/V1.0/众测服务-V1.0-api-docs.md
  32. 19 1
      src/main/resources/application.yml
  33. 43 19
      src/main/resources/logback.xml

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 52 - 0
logs/crowdsource-backend.log.2021-05-09.log


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 6 - 0
logs/crowdsource-backend.log.2021-05-10.log


+ 0 - 0
logs/recommend.log.2021-05-10.log


+ 9 - 3
pom.xml

@@ -139,9 +139,6 @@
             <version>3.8.0</version>
         </dependency>
 
-
-
-
         <!-- actuator -->
 <!--        <dependency>-->
 <!--            <groupId>org.springframework.boot</groupId>-->
@@ -167,6 +164,15 @@
         </dependency>
 
 
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-data-redis</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework.session</groupId>
+            <artifactId>spring-session-data-redis</artifactId>
+        </dependency>
     </dependencies>
 
     <dependencyManagement>

+ 19 - 0
src/main/java/edu/nju/configuration/CustomSessionDefaultRedisSerializer.java

@@ -0,0 +1,19 @@
+package edu.nju.configuration;
+
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
+
+@Slf4j
+public class CustomSessionDefaultRedisSerializer extends GenericJackson2JsonRedisSerializer {
+
+    @Override
+    public Object deserialize(byte[] bytes) {
+        Object deserialObj = null;
+        try {
+            deserialObj = super.deserialize(bytes);
+        }catch (Exception e){
+            log.warn("deserialize session Object error!", e);
+        }
+        return deserialObj;
+    }
+}

+ 93 - 0
src/main/java/edu/nju/configuration/RedisSessionConfiguration.java

@@ -0,0 +1,93 @@
+package edu.nju.configuration;
+
+import com.fasterxml.jackson.annotation.JsonAutoDetect;
+import com.fasterxml.jackson.annotation.PropertyAccessor;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.data.redis.cache.RedisCacheConfiguration;
+import org.springframework.data.redis.cache.RedisCacheManager;
+import org.springframework.data.redis.cache.RedisCacheWriter;
+import org.springframework.data.redis.connection.RedisConnectionFactory;
+import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
+import org.springframework.data.redis.serializer.RedisSerializationContext;
+import org.springframework.data.redis.serializer.RedisSerializer;
+import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;
+import org.springframework.session.web.http.CookieSerializer;
+import org.springframework.session.web.http.DefaultCookieSerializer;
+
+import java.time.Duration;
+import java.util.HashMap;
+import java.util.Map;
+
+@Configuration
+@EnableRedisHttpSession
+public class RedisSessionConfiguration {
+
+    @Value("${website.domain}")
+    private String domainName;
+
+    @Value("${cache.expire.duration}")
+    private int expireDuration;
+
+    @Bean
+    public CookieSerializer cookieSerializer() {
+        DefaultCookieSerializer serializer = new DefaultCookieSerializer();
+        serializer.setCookiePath("/");
+        serializer.setDomainName(domainName);
+        /**
+         * 划重点,Spring-Session 2.x版本与1.x版本有较大差异
+         * 由于内嵌tomcat版本不同,2.x版本默认开启Base64Encoding,同时使用1.x和2.x版本会导致Session不一致
+         * 此项目SpringBoot版本与用户中心相差较大,无法调整版本适配
+         */
+        serializer.setUseBase64Encoding(false);
+        return serializer;
+    }
+
+    @Bean
+    RedisSerializer<Object> springSessionDefaultRedisSerializer() {
+        return new CustomSessionDefaultRedisSerializer();
+    }
+
+    /**
+     * 最新版,设置redis缓存过期时间
+     */
+
+    @Bean
+    public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
+        return new RedisCacheManager(
+                RedisCacheWriter.nonLockingRedisCacheWriter(redisConnectionFactory),
+                this.getRedisCacheConfigurationWithTtl(expireDuration), // 默认策略,未配置的 key 会使用这个
+                this.getRedisCacheConfigurationMap() // 指定 key 策略
+        );
+    }
+
+    private Map<String, RedisCacheConfiguration> getRedisCacheConfigurationMap() {
+        Map<String, RedisCacheConfiguration> redisCacheConfigurationMap = new HashMap<>();
+        //SsoCache和BasicDataCache进行过期时间配置
+        redisCacheConfigurationMap.put("messageCache", this.getRedisCacheConfigurationWithTtl(30 * 60));
+
+        //自定义设置缓存时间
+        redisCacheConfigurationMap.put("userCache", this.getRedisCacheConfigurationWithTtl(expireDuration));
+
+        return redisCacheConfigurationMap;
+    }
+
+    private RedisCacheConfiguration getRedisCacheConfigurationWithTtl(Integer seconds) {
+        Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);
+        ObjectMapper om = new ObjectMapper();
+        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
+        om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
+        jackson2JsonRedisSerializer.setObjectMapper(om);
+        RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig();
+        redisCacheConfiguration = redisCacheConfiguration.serializeValuesWith(
+                RedisSerializationContext
+                        .SerializationPair
+                        .fromSerializer(jackson2JsonRedisSerializer)
+        ).entryTtl(Duration.ofSeconds(seconds));
+
+        return redisCacheConfiguration;
+    }
+
+}

+ 3 - 0
src/main/java/edu/nju/controller/ExtraController.java

@@ -7,10 +7,12 @@ import java.util.List;
 
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
 
 import edu.nju.entities.*;
 import edu.nju.model.ExamVO;
 import edu.nju.model.PageExamVO;
+import lombok.extern.slf4j.Slf4j;
 import org.json.JSONArray;
 import org.json.JSONObject;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -29,6 +31,7 @@ import java.net.URLConnection;
 /**
  * 上传用例报告相关接口/extra
  */
+@Slf4j
 @Controller
 @RequestMapping(value = "/extra")
 @CrossOrigin(origins = "*", maxAge = 3600, allowCredentials = "true")

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 0 - 0
src/main/resources/apidoc/V1.0/.cache.json


+ 107 - 107
src/main/resources/apidoc/V1.0/apidoc.log

@@ -1,214 +1,214 @@
-五月 09, 2021 10:44:52 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:42 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find java src paths:  [/Users/guochao/Desktop/project/crowdsource-backend/src/main/java/]
-五月 09, 2021 10:44:52 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:42 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: project type not set, try to figure out...
-五月 09, 2021 10:44:52 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:42 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start find controllers in path : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : DeleteController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ReviewJobController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ReviewAnalyzeController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ExtraController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : RecommendController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ExportController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : AnalyzeController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : AnnotationController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : DataController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ReviewController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : UploadController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : HistoryController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : GraphController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : RelationController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : OAuthController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : OssController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ReportController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : NodeController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : ReviewPaperController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: find controller file : CrowdsourcingToReviewController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : DeleteController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : DeleteController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ReviewJobController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ReviewJobController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ReviewAnalyzeController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ReviewAnalyzeController.java
-五月 09, 2021 10:44:53 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:43 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ExtraController.java
-五月 09, 2021 10:44:56 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:44 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ExtraController.java
-五月 09, 2021 10:44:56 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:44 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : RecommendController.java
-五月 09, 2021 10:44:56 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:44 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : RecommendController.java
-五月 09, 2021 10:44:56 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:44 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ExportController.java
-五月 09, 2021 10:44:56 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:44 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ExportController.java
-五月 09, 2021 10:44:56 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:44 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : AnalyzeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : AnalyzeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : AnnotationController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : AnnotationController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : DataController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : DataController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ReviewController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ReviewController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : UploadController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : UploadController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : HistoryController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : HistoryController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : GraphController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : GraphController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : RelationController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : RelationController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : OAuthController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : OAuthController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : OssController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : OssController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ReportController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ReportController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : NodeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : NodeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : ReviewPaperController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : ReviewPaperController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to parse controller file : CrowdsourcingToReviewController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to parse controller file : CrowdsourcingToReviewController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: generate api docs start...
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/DeleteController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/DeleteController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewJobController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewJobController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewAnalyzeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewAnalyzeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ExtraController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ExtraController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/RecommendController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/RecommendController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ExportController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ExportController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/AnalyzeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/AnalyzeController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/AnnotationController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/AnnotationController.java
-五月 09, 2021 10:44:57 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/DataController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/DataController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/UploadController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/UploadController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/HistoryController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/HistoryController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/GraphController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/GraphController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/RelationController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/RelationController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/OAuthController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/OAuthController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/OssController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/OssController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReportController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReportController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/NodeController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/NodeController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewPaperController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/ReviewPaperController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: start to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/CrowdsourcingToReviewController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: success to generate docs for controller file : /Users/guochao/Desktop/project/crowdsource-backend/src/main/java/edu/nju/controller/CrowdsourcingToReviewController.java
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: generate index start !!!
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: generate index done !!!
-五月 09, 2021 10:44:58 上午 io.github.yedaxia.apidocs.LogUtils info
+五月 10, 2021 11:38:45 上午 io.github.yedaxia.apidocs.LogUtils info
 信息: info: generate api docs done !!!

+ 15 - 15
src/main/resources/apidoc/V1.0/edu_nju_controller_AnalyzeController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -894,7 +894,7 @@
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="getUserPath"><a href="#">获取路径信息 /path </a></h2>
+<h2 id="getUserPath"><a href="#">获取路径信息 /path  返回整个导图,以及已点亮的导图页面 </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/analyze/path</code>
@@ -1265,13 +1265,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -1279,7 +1279,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -1301,7 +1301,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -1377,7 +1377,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_AnnotationController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -730,13 +730,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -744,7 +744,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -766,7 +766,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -842,7 +842,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_CrowdsourcingToReviewController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -719,13 +719,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -733,7 +733,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -755,7 +755,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -831,7 +831,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_DataController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -867,13 +867,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -881,7 +881,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -903,7 +903,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -979,7 +979,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_DeleteController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -743,13 +743,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -757,7 +757,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -779,7 +779,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -855,7 +855,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_ExportController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -707,13 +707,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -721,7 +721,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -743,7 +743,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -819,7 +819,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 39 - 21
src/main/resources/apidoc/V1.0/edu_nju_controller_ExtraController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -900,24 +900,43 @@
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="findByWorker"><a href="#">findByWorker </a></h2>
+<h2 id="findByWorker"><a href="#">/findByWorker  使用case_take_id 和 worker_id获取测试报告信息 </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/extra/findByWorker</code>
         <span class="label label-default">GET</span>
-        <span class="label label-default">POST</span>
 </p>
+        <p><strong>请求参数</strong> <span class="badge">application/x-www-form-urlencoded</span></p>
+        <table class="table table-bordered">
+            <tr>
+                <th>参数名</th>
+                <th>类型</th>
+                <th>必须</th>
+                <th>描述</th>
+            </tr>
+                    <tr>
+                        <td>case_take_id</td>
+                        <td>string</td>
+                        <td>否</td>
+                        <td></td>
+                    </tr>
+                    <tr>
+                        <td>worker_id</td>
+                        <td>string</td>
+                        <td>否</td>
+                        <td></td>
+                    </tr>
+        </table>
     <p><strong>返回结果</strong></p>
     <pre class="prettyprint lang-json">{}</pre>
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="getCaseList"><a href="#">获取测试用例列表 /getCaseList </a></h2>
+<h2 id="getCaseList"><a href="#">获取测试用例列表 /getCaseList    返回用例列表信息 </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/extra/getCaseList</code>
         <span class="label label-default">GET</span>
-        <span class="label label-default">POST</span>
 </p>
         <p><strong>请求参数</strong> <span class="badge">application/x-www-form-urlencoded</span></p>
         <table class="table table-bordered">
@@ -939,7 +958,7 @@
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="getBugList"><a href="#">获取测试Bug列表    /getBugList </a></h2>
+<h2 id="getBugList"><a href="#">获取测试Bug列表    /getBugList 返回报告下的所有bug </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/extra/getBugList</code>
@@ -1106,12 +1125,11 @@
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="getExam"><a href="#">获取考试的操作类型信息 </a></h2>
+<h2 id="getExam"><a href="#">/getExam 获取考试的操作类型信息 </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/extra/getExam</code>
         <span class="label label-default">GET</span>
-        <span class="label label-default">POST</span>
 </p>
         <p><strong>请求参数</strong> <span class="badge">application/x-www-form-urlencoded</span></p>
         <table class="table table-bordered">
@@ -1330,13 +1348,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -1344,7 +1362,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -1366,7 +1384,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -1442,7 +1460,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_GraphController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -779,13 +779,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -793,7 +793,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -815,7 +815,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -891,7 +891,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_HistoryController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -827,13 +827,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -841,7 +841,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -863,7 +863,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -939,7 +939,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_NodeController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -767,13 +767,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -781,7 +781,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -803,7 +803,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -879,7 +879,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_OAuthController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -731,13 +731,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -745,7 +745,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -767,7 +767,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -843,7 +843,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_OssController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -728,13 +728,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -742,7 +742,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -764,7 +764,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -840,7 +840,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 16 - 16
src/main/resources/apidoc/V1.0/edu_nju_controller_RecommendController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -695,7 +695,7 @@
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="getDetail"><a href="#">用户点击查看一个Bug的详细信息 </a></h2>
+<h2 id="getDetail"><a href="#">/getDetail 用户点击查看一个Bug的详细信息,返回bug信息 </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/rec/getDetail</code>
@@ -713,7 +713,7 @@
                         <td>id</td>
                         <td>string</td>
                         <td>否</td>
-                        <td></td>
+                        <td>Bug id</td>
                     </tr>
         </table>
     <p><strong>返回结果</strong></p>
@@ -829,13 +829,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -843,7 +843,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -865,7 +865,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -941,7 +941,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 15
src/main/resources/apidoc/V1.0/edu_nju_controller_RelationController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -668,7 +668,6 @@
 <p>
     <code>/relation/CTB</code>
         <span class="label label-default">GET</span>
-        <span class="label label-default">POST</span>
 </p>
         <p><strong>请求参数</strong> <span class="badge">application/x-www-form-urlencoded</span></p>
         <table class="table table-bordered">
@@ -782,13 +781,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -796,7 +795,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -818,7 +817,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -894,7 +893,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 15 - 15
src/main/resources/apidoc/V1.0/edu_nju_controller_ReportController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -759,7 +759,7 @@
                         </div>
                         <hr>
                         <div class="action-item">
-<h2 id="pageRec"><a href="#">路径页面推荐 /pageRec </a></h2>
+<h2 id="pageRec"><a href="#">路径页面推荐 /pageRec,返回导图中的推荐页面 </a></h2>
 <p><strong>请求URL</strong></p>
 <p>
     <code>/report/pageRec</code>
@@ -855,13 +855,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -869,7 +869,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -891,7 +891,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -967,7 +967,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewAnalyzeController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -740,13 +740,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -754,7 +754,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -776,7 +776,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -852,7 +852,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -812,13 +812,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -826,7 +826,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -848,7 +848,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -924,7 +924,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewJobController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -798,13 +798,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -812,7 +812,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -834,7 +834,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -910,7 +910,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_ReviewPaperController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -822,13 +822,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -836,7 +836,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -858,7 +858,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -934,7 +934,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/edu_nju_controller_UploadController.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -887,13 +887,13 @@
             {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
             {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
             {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-            {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+            {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+            {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+            {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
             {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
             {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-            {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+            {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
             {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
             {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
             {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -901,7 +901,7 @@
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
             {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-            {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+            {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
             {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
             {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -923,7 +923,7 @@
             {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
             {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
             {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-            {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+            {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
             {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
             {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
             {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -999,7 +999,7 @@
             {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
             {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
             {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-            {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+            {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
             {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
             {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
             {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 14 - 14
src/main/resources/apidoc/V1.0/index.html

@@ -127,13 +127,13 @@
                         findPage
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#findByWorker">
-                        findByWorker
+                        /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getCaseList">
-                        获取测试用例列表 /getCaseList
+                        获取测试用例列表 /getCaseList    返回用例列表信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getBugList">
-                        获取测试Bug列表    /getBugList
+                        获取测试Bug列表    /getBugList 返回报告下的所有bug
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadExam">
                         47.99.140.117:9001/Bug/api/extra/uploadExam
@@ -145,7 +145,7 @@
                         47.99.140.117:9001/Bug/api/extra/getExamList
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#getExam">
-                        获取考试的操作类型信息
+                        /getExam 获取考试的操作类型信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ExtraController.html#uploadTestCase">
                         上传测试用例   /uploadTestCase
@@ -177,7 +177,7 @@
                         /getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#getDetail">
-                        用户点击查看一个Bug的详细信息
+                        /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_RecommendController.html#recommend">
                         /recommend 用户编辑bug时推荐相似bug
@@ -257,7 +257,7 @@
                         getDiff
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getUserPath">
-                        获取路径信息 /path
+                        获取路径信息 /path  返回整个导图,以及已点亮的导图页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_AnalyzeController.html#getAfterSimilarBug">
                         getAfterSimilarBug
@@ -565,7 +565,7 @@
                         userRecord
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#pageRec">
-                        路径页面推荐 /pageRec
+                        路径页面推荐 /pageRec,返回导图中的推荐页面
                     </a>
                     <a class="catalog-item" href="edu_nju_controller_ReportController.html#bugRec">
                         bug 推荐 /bugRec
@@ -719,13 +719,13 @@
         {name: '上传用例报告相关接口/extra.更新测试报告   /updateReport   只返回200或500', url: 'edu_nju_controller_ExtraController.html#updateReport'},
         {name: '上传用例报告相关接口/extra.获取测试报告 /getReport', url: 'edu_nju_controller_ExtraController.html#getReport'},
         {name: '上传用例报告相关接口/extra.findPage', url: 'edu_nju_controller_ExtraController.html#findPage'},
-        {name: '上传用例报告相关接口/extra.findByWorker', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
-        {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
-        {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList', url: 'edu_nju_controller_ExtraController.html#getBugList'},
+        {name: '上传用例报告相关接口/extra./findByWorker  使用case_take_id 和 worker_id获取测试报告信息', url: 'edu_nju_controller_ExtraController.html#findByWorker'},
+        {name: '上传用例报告相关接口/extra.获取测试用例列表 /getCaseList    返回用例列表信息', url: 'edu_nju_controller_ExtraController.html#getCaseList'},
+        {name: '上传用例报告相关接口/extra.获取测试Bug列表    /getBugList 返回报告下的所有bug', url: 'edu_nju_controller_ExtraController.html#getBugList'},
         {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/uploadExam', url: 'edu_nju_controller_ExtraController.html#uploadExam'},
         {name: '上传用例报告相关接口/extra.', url: 'edu_nju_controller_ExtraController.html#uploadExamUrl'},
         {name: '上传用例报告相关接口/extra.47.99.140.117:9001/Bug/api/extra/getExamList', url: 'edu_nju_controller_ExtraController.html#getExamList'},
-        {name: '上传用例报告相关接口/extra.获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
+        {name: '上传用例报告相关接口/extra./getExam 获取考试的操作类型信息', url: 'edu_nju_controller_ExtraController.html#getExam'},
         {name: '上传用例报告相关接口/extra.上传测试用例   /uploadTestCase', url: 'edu_nju_controller_ExtraController.html#uploadTestCase'},
         {name: '上传用例报告相关接口/extra.getTestCase', url: 'edu_nju_controller_ExtraController.html#getTestCase'},
         {name: '上传用例报告相关接口/extra.更新测试用例   /updateTestCase 返回200或500', url: 'edu_nju_controller_ExtraController.html#updateTestCase'},
@@ -733,7 +733,7 @@
         {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
         {name: '上传用例报告相关接口/extra.getTask', url: 'edu_nju_controller_ExtraController.html#getTask'},
         {name: '推荐接口相关 /rec  RecommendController./getList 每次刷新或进入填写页面,都应该调用一次该方法,因为其中包含了一些初始化操作,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#getList'},
-        {name: '推荐接口相关 /rec  RecommendController.用户点击查看一个Bug的详细信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
+        {name: '推荐接口相关 /rec  RecommendController./getDetail 用户点击查看一个Bug的详细信息,返回bug信息', url: 'edu_nju_controller_RecommendController.html#getDetail'},
         {name: '推荐接口相关 /rec  RecommendController./recommend 用户编辑bug时推荐相似bug
 用户点击六个类别之后,都使用该接口,返回推荐列表', url: 'edu_nju_controller_RecommendController.html#recommend'},
         {name: '推荐接口相关 /rec  RecommendController.diversityRec', url: 'edu_nju_controller_RecommendController.html#diversityRec'},
@@ -755,7 +755,7 @@
         {name: '分析接口 /analyze.getDetail', url: 'edu_nju_controller_AnalyzeController.html#getDetail'},
         {name: '分析接口 /analyze.getAllGrades', url: 'edu_nju_controller_AnalyzeController.html#getAllGrades'},
         {name: '分析接口 /analyze.getDiff', url: 'edu_nju_controller_AnalyzeController.html#getDiff'},
-        {name: '分析接口 /analyze.获取路径信息 /path', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
+        {name: '分析接口 /analyze.获取路径信息 /path  返回整个导图,以及已点亮的导图页面', url: 'edu_nju_controller_AnalyzeController.html#getUserPath'},
         {name: '分析接口 /analyze.getAfterSimilarBug', url: 'edu_nju_controller_AnalyzeController.html#getAfterSimilarBug'},
         {name: '分析接口 /analyze.analyseExam', url: 'edu_nju_controller_AnalyzeController.html#analyseExam'},
         {name: '分析接口 /analyze.todo 引进 guvva 来做缓存', url: 'edu_nju_controller_AnalyzeController.html#analysePeople'},
@@ -831,7 +831,7 @@
         {name: '报告相关 /report.keyWords', url: 'edu_nju_controller_ReportController.html#keyWords'},
         {name: '报告相关 /report.charm', url: 'edu_nju_controller_ReportController.html#charm'},
         {name: '报告相关 /report.userRecord', url: 'edu_nju_controller_ReportController.html#userRecord'},
-        {name: '报告相关 /report.路径页面推荐 /pageRec', url: 'edu_nju_controller_ReportController.html#pageRec'},
+        {name: '报告相关 /report.路径页面推荐 /pageRec,返回导图中的推荐页面', url: 'edu_nju_controller_ReportController.html#pageRec'},
         {name: '报告相关 /report.bug 推荐 /bugRec', url: 'edu_nju_controller_ReportController.html#bugRec'},
         {name: 'NodeController.generateBasicNode', url: 'edu_nju_controller_NodeController.html#generateBasicNode'},
         {name: 'NodeController.generateCatchNode', url: 'edu_nju_controller_NodeController.html#generateCatchNode'},

+ 18 - 12
src/main/resources/apidoc/V1.0/众测服务-V1.0-api-docs.md

@@ -336,27 +336,33 @@ report_id|string|否|报告id
 	"pageContent":"string"
 }
 ```
-## findByWorker
+## /findByWorker  使用case_take_id 和 worker_id获取测试报告信息
 
 **
 
 **请求URL**
 
-/extra/findByWorker `GET` `POST` 
+/extra/findByWorker `GET` 
 
+**请求参数**
+
+参数名|类型|必须|描述
+--:|:--:|:--:|:--
+case_take_id|string|否|
+worker_id|string|否|
 
 **返回结果**
 
 ```json
 {}
 ```
-## 获取测试用例列表 /getCaseList
+## 获取测试用例列表 /getCaseList    返回用例列表信息
 
 **
 
 **请求URL**
 
-/extra/getCaseList `GET` `POST` 
+/extra/getCaseList `GET` 
 
 **请求参数**
 
@@ -369,7 +375,7 @@ report_id|string|否|报告id
 ```json
 {}
 ```
-## 获取测试Bug列表    /getBugList
+## 获取测试Bug列表    /getBugList 返回报告下的所有bug
 
 **
 
@@ -453,13 +459,13 @@ string{}
 ```json
 {}
 ```
-## 获取考试的操作类型信息
+## /getExam 获取考试的操作类型信息
 
 **
 
 **请求URL**
 
-/extra/getExam `GET` `POST` 
+/extra/getExam `GET` 
 
 **请求参数**
 
@@ -598,7 +604,7 @@ report_id|string|否|报告id
 ```json
 {}
 ```
-## 用户点击查看一个Bug的详细信息
+## /getDetail 用户点击查看一个Bug的详细信息,返回bug信息
 
 **
 
@@ -610,7 +616,7 @@ report_id|string|否|报告id
 
 参数名|类型|必须|描述
 --:|:--:|:--:|:--
-id|string|否|
+id|string|否|Bug id
 
 **返回结果**
 
@@ -931,7 +937,7 @@ long[]
 ```json
 {}
 ```
-## 获取路径信息 /path
+## 获取路径信息 /path  返回整个导图,以及已点亮的导图页面
 
 **
 
@@ -1936,7 +1942,7 @@ worker_id|string|否|人员id
 
 **请求URL**
 
-/relation/CTB `GET` `POST` 
+/relation/CTB `GET` 
 
 **请求参数**
 
@@ -2180,7 +2186,7 @@ string{}
 ```json
 {}
 ```
-## 路径页面推荐 /pageRec
+## 路径页面推荐 /pageRec,返回导图中的推荐页面
 
 **
 

+ 19 - 1
src/main/resources/application.yml

@@ -1,4 +1,22 @@
-sleep: 0
+
+spring:
+  redis:
+    host: 59.42.10.53
+    port: 6379
+    password: '#2019@callforttest@!'
+    jedis:
+      pool:
+        max-active: 8
+        max-idle: 8
+        max-wait: -1
+        min-idle: 0
+    database: 6
+
+cache:
+  expire:
+    duration: 86400
+website:
+  domain: mooctest.net
 
 # 配置输出日志
 logging:

+ 43 - 19
src/main/resources/logback.xml

@@ -1,29 +1,50 @@
 <configuration>
 
     <include resource="org/springframework/boot/logging/logback/defaults.xml" />
+<!--文件输出-->
+<!--    <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">-->
+<!--        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">-->
+<!--            &lt;!&ndash;<fileNamePattern>/back_end/logs/crowdsource-backend.log.%d{yyyy-MM-dd}.log</fileNamePattern>&ndash;&gt;-->
+<!--            <fileNamePattern>./logs/crowdsource-backend.log.%d{yyyy-MM-dd}.log</fileNamePattern>-->
+<!--            <maxHistory>30</maxHistory>-->
+<!--        </rollingPolicy>-->
+<!--        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">-->
+<!--            <maxFileSize>10MB</maxFileSize>-->
+<!--        </triggeringPolicy>-->
+<!--        <encoder>-->
+<!--            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{35} - %msg %n</pattern>-->
+<!--            <charset>UTF-8</charset> &lt;!&ndash; 此处设置字符集 &ndash;&gt;-->
+<!--        </encoder>-->
+<!--    </appender>-->
 
-    <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
-        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
-            <!--<fileNamePattern>/back_end/logs/crowdsource-backend.log.%d{yyyy-MM-dd}.log</fileNamePattern>-->
-            <fileNamePattern>./logs/crowdsource-backend.log.%d{yyyy-MM-dd}.log</fileNamePattern>
-            <maxHistory>30</maxHistory>
-        </rollingPolicy>
-        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
-            <maxFileSize>10MB</maxFileSize>
-        </triggeringPolicy>
-        <encoder>
-            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{35} - %msg %n</pattern>
-            <charset>UTF-8</charset> <!-- 此处设置字符集 -->
+<!--    <appender name="recommendAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">-->
+<!--        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">-->
+<!--            &lt;!&ndash;<fileNamePattern>/back_end/logs/recommend.log.%d{yyyy-MM-dd}.log</fileNamePattern>&ndash;&gt;-->
+<!--            <fileNamePattern>./logs/recommend.log.%d{yyyy-MM-dd}.log</fileNamePattern>-->
+<!--        </rollingPolicy>-->
+<!--        <encoder>-->
+<!--            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{5} - %msg%n</pattern>-->
+<!--        </encoder>-->
+<!--    </appender>-->
+
+    <!--控制台输出appender-->
+    <appender name="FILE" class="ch.qos.logback.core.ConsoleAppender">
+        <!--设置输出格式-->
+        <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
+            <!--格式化输出:%d表示日期,%thread表示线程名,%-5level:级别从左显示5个字符宽度%msg:日志消息,%n是换行符-->
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
+            <!--设置编码-->
+            <charset>UTF-8</charset>
         </encoder>
     </appender>
 
-    <appender name="recommendAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
-        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
-            <!--<fileNamePattern>/back_end/logs/recommend.log.%d{yyyy-MM-dd}.log</fileNamePattern>-->
-            <fileNamePattern>./logs/recommend.log.%d{yyyy-MM-dd}.log</fileNamePattern>
-        </rollingPolicy>
-        <encoder>
-            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{5} - %msg%n</pattern>
+    <appender name="recommendAppender" class="ch.qos.logback.core.ConsoleAppender">
+        <!--设置输出格式-->
+        <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
+            <!--格式化输出:%d表示日期,%thread表示线程名,%-5level:级别从左显示5个字符宽度%msg:日志消息,%n是换行符-->
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
+            <!--设置编码-->
+            <charset>UTF-8</charset>
         </encoder>
     </appender>
 
@@ -31,6 +52,9 @@
         <appender-ref ref="recommendAppender" />
     </logger>
 
+    <logger name="org.springframework.data.mongodb.core" level="DEBUG"/>
+
+    <!--指定基础的日志输出级别-->
     <root level="INFO">
         <appender-ref ref="FILE"></appender-ref>
     </root>

Vissa filer visades inte eftersom för många filer har ändrats