feat: 발송가능건수 URI 수정 :: selectPrice -> price
This commit is contained in:
parent
86c91717df
commit
be003338ab
@ -38,7 +38,9 @@ public class ContainerConfig {
|
|||||||
ajpConnector.setPort(SERVER_TOMCAT_AJP_PORT);
|
ajpConnector.setPort(SERVER_TOMCAT_AJP_PORT);
|
||||||
ajpConnector.setSecure(false);
|
ajpConnector.setSecure(false);
|
||||||
ajpConnector.setAllowTrace(false);
|
ajpConnector.setAllowTrace(false);
|
||||||
ajpConnector.setScheme("http");
|
ajpConnector.setScheme("https");
|
||||||
|
ajpConnector.setRedirectPort(8443);
|
||||||
|
ajpConnector.setProperty("address", "0.0.0.0");
|
||||||
((AbstractAjpProtocol<?>) ajpConnector.getProtocolHandler()).setSecretRequired(false);
|
((AbstractAjpProtocol<?>) ajpConnector.getProtocolHandler()).setSecretRequired(false);
|
||||||
return ajpConnector;
|
return ajpConnector;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -27,14 +27,14 @@ public class PriceRestController {
|
|||||||
private PriceService priceService;
|
private PriceService priceService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @methodName : selectPrice
|
* @methodName : price
|
||||||
* @author : JunHo Lee
|
* @author : JunHo Lee
|
||||||
* @date : 2023.05.16
|
* @date : 2023.05.16
|
||||||
* @return
|
* @return
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@PostMapping("/api/inqry/selectPrice")
|
@PostMapping("/api/inqry/price")
|
||||||
public ResponseEntity<RestResponse> selectPrice(PriceVO priceVO) throws Exception{
|
public ResponseEntity<RestResponse> price(PriceVO priceVO) throws Exception{
|
||||||
|
|
||||||
return ResponseEntity.ok(priceService.selectUserPrice(priceVO.getMberId()));
|
return ResponseEntity.ok(priceService.selectUserPrice(priceVO.getMberId()));
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,10 @@
|
|||||||
#spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
#spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||||||
#spring.datasource.url=jdbc:mysql://192.168.0.125:3306/mjon?serverTimezone=Asia/Seoul
|
#spring.datasource.url=jdbc:mysql://192.168.0.125:3306/mjon?serverTimezone=Asia/Seoul
|
||||||
spring.datasource.driverClassName=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
spring.datasource.driverClassName=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
||||||
|
#prod DB
|
||||||
spring.datasource.url=jdbc:log4jdbc:mysql://139.150.72.157:3306/mjon?serverTimezone=Asia/Seoul
|
spring.datasource.url=jdbc:log4jdbc:mysql://139.150.72.157:3306/mjon?serverTimezone=Asia/Seoul
|
||||||
|
#dev DB
|
||||||
|
#spring.datasource.url=jdbc:log4jdbc:mysql://119.193.215.98:3306/mjon?serverTimezone=Asia/Seoul
|
||||||
|
|
||||||
spring.datasource.username=mjonUr
|
spring.datasource.username=mjonUr
|
||||||
spring.datasource.password=mjon!@#$
|
spring.datasource.password=mjon!@#$
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user