forked from tonybase/netty-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tony
committed
Feb 23, 2015
1 parent
55c6c01
commit fdb7c70
Showing
69 changed files
with
522 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
chat-biz/src/main/java/io/ganguo/chat/biz/repository/LoginRepository.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...io/ganguo/chat/biz/ApplicationConfig.java → ...guo/chat/route/biz/ApplicationConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/io/ganguo/chat/biz/bean/ClientType.java → ...anguo/chat/route/biz/bean/ClientType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.ganguo.chat.biz.bean; | ||
package io.ganguo.chat.route.biz.bean; | ||
|
||
/** | ||
* Created by Tony on 2/19/15. | ||
|
2 changes: 1 addition & 1 deletion
2
.../java/io/ganguo/chat/biz/bean/Gender.java → ...io/ganguo/chat/route/biz/bean/Gender.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.ganguo.chat.biz.bean; | ||
package io.ganguo.chat.route.biz.bean; | ||
|
||
/** | ||
* @author Tony | ||
|
2 changes: 1 addition & 1 deletion
2
...ava/io/ganguo/chat/biz/bean/Presence.java → .../ganguo/chat/route/biz/bean/Presence.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.ganguo.chat.biz.bean; | ||
package io.ganguo.chat.route.biz.bean; | ||
|
||
/** | ||
* Created by Tony on 2/21/15. | ||
|
4 changes: 1 addition & 3 deletions
4
...io/ganguo/chat/biz/entity/BaseEntity.java → ...guo/chat/route/biz/entity/BaseEntity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...java/io/ganguo/chat/biz/entity/Login.java → ...o/ganguo/chat/route/biz/entity/Login.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../java/io/ganguo/chat/biz/entity/User.java → ...io/ganguo/chat/route/biz/entity/User.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...io/ganguo/chat/biz/entity/UserDetail.java → ...guo/chat/route/biz/entity/UserDetail.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.ganguo.chat.biz.entity; | ||
package io.ganguo.chat.route.biz.entity; | ||
|
||
/** | ||
* @author Tony | ||
|
15 changes: 15 additions & 0 deletions
15
chat-biz/src/main/java/io/ganguo/chat/route/biz/repository/LoginRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.ganguo.chat.route.biz.repository; | ||
|
||
import io.ganguo.chat.route.biz.entity.Login; | ||
import org.springframework.data.repository.CrudRepository; | ||
|
||
import java.math.BigInteger; | ||
|
||
/** | ||
* Created by Tony on 2/20/15. | ||
*/ | ||
public interface LoginRepository extends CrudRepository<Login, BigInteger> { | ||
|
||
Login findByUin(long uin); | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
chat-biz/src/main/java/io/ganguo/chat/route/biz/repository/MessageRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package io.ganguo.chat.route.biz.repository; | ||
|
||
import io.ganguo.chat.route.biz.entity.Message; | ||
import org.springframework.data.repository.CrudRepository; | ||
|
||
import java.math.BigInteger; | ||
|
||
/** | ||
* Created by Tony on 2/23/15. | ||
*/ | ||
public interface MessageRepository extends CrudRepository<Message, BigInteger> { | ||
|
||
} |
5 changes: 2 additions & 3 deletions
5
...o/chat/biz/repository/UserRepository.java → .../route/biz/repository/UserRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
chat-biz/src/main/java/io/ganguo/chat/route/biz/service/MessageService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package io.ganguo.chat.route.biz.service; | ||
|
||
/** | ||
* Created by Tony on 2/23/15. | ||
*/ | ||
public interface MessageService { | ||
|
||
|
||
} |
6 changes: 3 additions & 3 deletions
6
.../ganguo/chat/biz/service/UserService.java → ...o/chat/route/biz/service/UserService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
chat-biz/src/main/java/io/ganguo/chat/route/biz/service/impl/MessageServiceImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package io.ganguo.chat.route.biz.service.impl; | ||
|
||
import io.ganguo.chat.route.biz.service.MessageService; | ||
|
||
/** | ||
* Created by Tony on 2/23/15. | ||
*/ | ||
public class MessageServiceImpl implements MessageService { | ||
|
||
} |
12 changes: 6 additions & 6 deletions
12
...hat/biz/service/impl/UserServiceImpl.java → ...ute/biz/service/impl/UserServiceImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...guo/chat/biz/AbstractIntegrationTest.java → ...at/route/biz/AbstractIntegrationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...anguo/chat/biz/ApplicationConfigTest.java → ...chat/route/biz/ApplicationConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rc/test/java/io/ganguo/chat/biz/Test.java → ...t/java/io/ganguo/chat/route/biz/Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.ganguo.chat.biz; | ||
package io.ganguo.chat.route.biz; | ||
|
||
import java.util.UUID; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 4 additions & 7 deletions
11
...ganguo/chat/biz/user/TestUserService.java → .../chat/route/biz/user/TestUserService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 0 additions & 45 deletions
45
chat-client/src/main/java/io/ganguo/chat/client/handler/MessageHandler.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.