Skip to content

Commit

Permalink
update port 12345
Browse files Browse the repository at this point in the history
update port 12345
  • Loading branch information
jongwuner committed Jan 13, 2020
1 parent 805da28 commit e610bd5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public class MobileController {
@Autowired
DataService dss;

@RequestMapping(value = "/", method = RequestMethod.GET)
@RequestMapping(value = "/phone", method = RequestMethod.GET)
public void GetTotalPcData(HttpServletResponse response) throws IOException {
// 모든 PC의 JSON 데이터 GET
System.out.println("Input : <- Total GET method ");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public class PcController {

@RequestMapping(value = "/pc", method = RequestMethod.GET)
public void GetPcData(HttpServletResponse response) throws IOException {
// PC의 JSON 데이터 GET
// RedisLoad_JsonToObj();
// HttpResponse_ObjToJson();
System.out.println("Input : /pc <- GET method ");
Expand Down

This file was deleted.

3 changes: 2 additions & 1 deletion dev/Server/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ spring.redis.lettuce.pool.max-active=10
spring.redis.lettuce.pool.max-idle=10
spring.redis.lettuce.pool.min-idle=2
spring.redis.port=6379
spring.redis.host=127.0.0.1
spring.redis.host=127.0.0.1
server.port = 12345

0 comments on commit e610bd5

Please sign in to comment.