Skip to content
This repository has been archived by the owner on Mar 4, 2022. It is now read-only.

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
itning committed Apr 8, 2019
1 parent 4312c7e commit e6a7007
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>top.yunshu</groupId>
<artifactId>shw_server</artifactId>
<version>1.7.3-RELEASE</version>
<version>1.7.4-RELEASE</version>
<name>shw_server</name>
<description>Student HomeWork Management System</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ public void deleteGroup(String id, String teacherNumber) {
@CacheEvict(cacheNames = "groupOfTeacher", key = "'regex:'+#teacherNumber+'*'"),
@CacheEvict(cacheNames = "findGroupNameByGroupId", key = "#id"),
@CacheEvict(cacheNames = "studentDoneWork", allEntries = true),
@CacheEvict(cacheNames = "studentUndoneWork", allEntries = true)
@CacheEvict(cacheNames = "studentUndoneWork", allEntries = true),
@CacheEvict(cacheNames = "work", key = "'regex:'+#teacherNumber+'*'")
})
@Override
public Group updateGroup(String id, String name, String teacherNumber) {
Expand Down

0 comments on commit e6a7007

Please sign in to comment.