Merge remote-tracking branch 'origin/jenkins_with_weblogic' of C:/eactive/workspaces/eapim-bundle/bundles/251104/eapim-admin_incremental_2025-10-15.bundle into jenkins_with_weblogic

# Conflicts:
#	WebContent/addon/request-header.jsp
This commit is contained in:
Rinjae
2025-11-04 17:57:00 +09:00
4 changed files with 9 additions and 11 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
UserManController_사용자관리_APIGW_INSERT,UPDATE,DELETE UserManController_사용자관리_APIGW_INSERT,UPDATE,DELETE
AdapterController_어댑터관리_APIGW_INSERT,UPDATE,DELETE AdapterController_어댑터관리_APIGW_INSERT,UPDATE,DELETE
ApiInterfaceController_API관리_APIGW_INSERT,UPDATE,DELETE ApiInterfaceController_API관리_APIGW_INSERT,UPDATE,DELETE,CLONE
ClientController_Client (키정보)관리_APIGW_INSERT,UPDATE,DELETE ClientController_Client (키정보)관리_APIGW_INSERT,UPDATE,DELETE
RoleController_Role (역할)관리_APIGW_INSERT,UPDATE,DELETE RoleController_Role (역할)관리_APIGW_INSERT,UPDATE,DELETE
MenuController_Menu관리_APIGW_INSERT,UPDATE,DELETE MenuController_Menu관리_APIGW_INSERT,UPDATE,DELETE
+6 -8
View File
@@ -1,11 +1,9 @@
<%@ page import="java.util.Enumeration" %> <%@ page language="java" contentType="text/plain; charset=UTF-8" pageEncoding="UTF-8" trimDirectiveWhitespaces="true" %>
<%@page contentType="text/html; charset=UTF-8" pageEncoding="utf-8" trimDirectiveWhitespaces="true"%>
<% <%
Enumeration<String> names = request.getHeaderNames(); java.util.Enumeration<String> names = request.getHeaderNames();
while (names.hasMoreElements()) { while (names.hasMoreElements()) {
String name = names.nextElement(); String name = names.nextElement();
out.println(name + ": " + request.getHeader(name)); out.println(name + ": " + request.getHeader(name));
} }
%> %>
---------
request.getScheme(): <%=request.getScheme()%> request.getScheme(): <%=request.getScheme()%>
@@ -1196,7 +1196,7 @@
type: "POST", type: "POST",
url: jsonUrl, url: jsonUrl,
data: { data: {
cmd: 'INSERT_CLONE', cmd: 'CLONE',
orgApiInterfaceId, orgApiInterfaceId,
newBizCode, newBizCode,
newApiInterfaceId, newApiInterfaceId,
@@ -268,7 +268,7 @@ public class ApiInterfaceController extends OnlBaseAnnotationController {
.body(exportData.getExportFileContent()); .body(exportData.getExportFileContent());
} }
@PostMapping(value = "/onl/transaction/apim/apiInterfaceMan.json", params = "cmd=INSERT_CLONE") @PostMapping(value = "/onl/transaction/apim/apiInterfaceMan.json", params = "cmd=CLONE")
public ResponseEntity<?> cloneApiInterface(String orgApiInterfaceId, String newBizCode, String newApiInterfaceId, String newInboundHttpMethod, String newInboundRestPath) throws BizException { public ResponseEntity<?> cloneApiInterface(String orgApiInterfaceId, String newBizCode, String newApiInterfaceId, String newInboundHttpMethod, String newInboundRestPath) throws BizException {
try { try {
ApiInterfaceUI orgApiInterfaceUI = service.selectDetail(orgApiInterfaceId); ApiInterfaceUI orgApiInterfaceUI = service.selectDetail(orgApiInterfaceId);