{
+ const {fileInputRef, handleChangeImages, urls, handleDeleteImage, isPending, canSubmit, submitImages} =
+ useAddImagesPage();
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 변경 완료
+
+
+ );
+};
+
+export default AddImagesPage;
diff --git a/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx b/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx
index 6c29fcac3..e31cb9985 100644
--- a/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx
+++ b/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx
@@ -2,7 +2,7 @@ import {css} from '@emotion/react';
import Top from '@components/Design/components/Top/Top';
-import useSetEventPasswordStep, {UseSetEventPasswordStepReturnType} from '@hooks/useSetEventPasswordStep';
+import useSetEventPasswordStep from '@hooks/useSetEventPasswordStep';
import {FixedButton, Input} from '@HDesign/index';
diff --git a/client/src/pages/ErrorPage/SendErrorPage/index.tsx b/client/src/pages/ErrorPage/SendErrorPage/index.tsx
new file mode 100644
index 000000000..45ae4667c
--- /dev/null
+++ b/client/src/pages/ErrorPage/SendErrorPage/index.tsx
@@ -0,0 +1,24 @@
+import {useNavigate} from 'react-router-dom';
+
+import Top from '@components/Design/components/Top/Top';
+
+import {Button, FunnelLayout, MainLayout} from '@HDesign/index';
+
+const SendErrorPage = () => {
+ const navigate = useNavigate();
+
+ return (
+
+
+
+
+
+
+
+
+ );
+};
+
+export default SendErrorPage;
diff --git a/client/src/pages/EventPage/AdminPage/AdminPage.tsx b/client/src/pages/EventPage/AdminPage/AdminPage.tsx
index c69170897..a6c32f855 100644
--- a/client/src/pages/EventPage/AdminPage/AdminPage.tsx
+++ b/client/src/pages/EventPage/AdminPage/AdminPage.tsx
@@ -1,33 +1,20 @@
-import {useEffect} from 'react';
-import {useNavigate, useOutletContext} from 'react-router-dom';
+import {useNavigate} from 'react-router-dom';
import StepList from '@components/StepList/Steps';
-import useRequestPostAuthenticate from '@hooks/queries/auth/useRequestPostAuthentication';
-import useRequestGetSteps from '@hooks/queries/step/useRequestGetSteps';
+import {Banner} from '@components/Design/components/Banner';
-import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore';
+import useAdminPage from '@hooks/useAdminPage';
+import useAmplitude from '@hooks/useAmplitude';
import {Title, Button, Dropdown, DropdownButton} from '@HDesign/index';
-import getEventIdByUrl from '@utils/getEventIdByUrl';
-
-import {EventPageContextProps} from '../EventPageLayout';
-
import {receiptStyle} from './AdminPage.style';
const AdminPage = () => {
const navigate = useNavigate();
- const eventId = getEventIdByUrl();
- const {isAdmin, eventName} = useOutletContext
();
-
- const {totalExpenseAmount} = useTotalExpenseAmountStore();
-
- const {steps} = useRequestGetSteps();
- const {postAuthenticate} = useRequestPostAuthenticate();
+ const {trackAddBillStart} = useAmplitude();
- useEffect(() => {
- postAuthenticate();
- }, [postAuthenticate]);
+ const {eventId, isAdmin, eventName, totalExpenseAmount, isShowBanner, onDelete, steps} = useAdminPage();
const navigateAccountInputPage = () => {
navigate(`/event/${eventId}/admin/edit`);
@@ -37,6 +24,15 @@ const AdminPage = () => {
navigate(`/event/${eventId}/admin/member`);
};
+ const navigateAddImages = () => {
+ navigate(`/event/${eventId}/admin/add-images`);
+ };
+
+ const navigateAddBill = () => {
+ trackAddBillStart({eventName, eventToken: eventId});
+ navigate(`/event/${eventId}/admin/add-bill`);
+ };
+
return (
{
+
}
/>
-
-
diff --git a/client/src/pages/EventPage/AuthGate/index.tsx b/client/src/pages/EventPage/AuthGate/index.tsx
new file mode 100644
index 000000000..7031cc773
--- /dev/null
+++ b/client/src/pages/EventPage/AuthGate/index.tsx
@@ -0,0 +1,26 @@
+import {useEffect} from 'react';
+
+import useRequestPostAuthentication from '@hooks/queries/auth/useRequestPostAuthentication';
+
+import {useAuthStore} from '@store/authStore';
+
+type AuthGateProps = React.PropsWithChildren & {
+ fallback: React.ReactNode;
+};
+
+const AuthGate = ({children, fallback}: AuthGateProps) => {
+ const {isError, postAuthenticate} = useRequestPostAuthentication();
+ const {isAdmin} = useAuthStore();
+
+ useEffect(() => {
+ postAuthenticate();
+ }, [postAuthenticate]);
+
+ if (isError && !isAdmin) {
+ return fallback;
+ }
+
+ return children;
+};
+
+export default AuthGate;
diff --git a/client/src/pages/EventPage/EventPageLayout.tsx b/client/src/pages/EventPage/EventPageLayout.tsx
index 2fcf0d682..7361992b4 100644
--- a/client/src/pages/EventPage/EventPageLayout.tsx
+++ b/client/src/pages/EventPage/EventPageLayout.tsx
@@ -1,25 +1,57 @@
import type {Event} from 'types/serviceType';
import {Outlet} from 'react-router-dom';
+import {useEffect} from 'react';
import useEventPageLayout from '@hooks/useEventPageLayout';
+import useShareEvent from '@hooks/useShareEvent';
+import useAmplitude from '@hooks/useAmplitude';
-import {ShareEventButton} from '@components/ShareEventButton';
+import {Footer} from '@components/Footer';
+import {DesktopShareEventButton, MobileShareEventButton} from '@components/ShareEventButton';
import {Flex, Icon, IconButton, MainLayout, TopNav} from '@HDesign/index';
+import {isMobileDevice} from '@utils/detectDevice';
+import {updateMetaTag} from '@utils/udpateMetaTag';
+
export type EventPageContextProps = Event & {
isAdmin: boolean;
+ eventToken: string;
};
const EventPageLayout = () => {
- const {isAdmin, isLoginPage, eventOutline} = useEventPageLayout();
-
+ const {isAdmin, event, eventId, eventSummary} = useEventPageLayout();
const outletContext: EventPageContextProps = {
isAdmin,
- ...eventOutline,
+ eventToken: eventId,
+ ...event,
+ };
+ const {trackShareEvent} = useAmplitude();
+
+ const isMobile = isMobileDevice();
+ const {kakaoShare, copyShare} = useShareEvent({eventName: event.eventName});
+
+ const trackLinkShare = async () => {
+ trackShareEvent({...eventSummary, shareMethod: 'link'});
+ await copyShare();
};
+ const trackKakaoShare = () => {
+ trackShareEvent({...eventSummary, shareMethod: 'kakao'});
+ kakaoShare();
+ };
+
+ useEffect(() => {
+ console.log('mount');
+ updateMetaTag('og:title', `행동대장이 "${eventSummary.eventName}"에 대한 정산을 요청했어요`);
+
+ return () => {
+ console.log('unmount');
+ updateMetaTag('og:title', '행동대장 - 쉽고 빠른 모임 정산 및 송금 서비스');
+ };
+ }, []);
+
return (
@@ -32,9 +64,14 @@ const EventPageLayout = () => {
- {!isLoginPage && }
+ {isMobile ? (
+
+ ) : (
+ 정산 초대하기
+ )}
+
);
};
diff --git a/client/src/pages/EventPage/HomePage/HomePage.tsx b/client/src/pages/EventPage/HomePage/HomePage.tsx
index 1876327bf..4314d9592 100644
--- a/client/src/pages/EventPage/HomePage/HomePage.tsx
+++ b/client/src/pages/EventPage/HomePage/HomePage.tsx
@@ -1,14 +1,17 @@
import type {EventPageContextProps} from '../EventPageLayout';
-import {useOutletContext} from 'react-router-dom';
+import {useNavigate, useOutletContext} from 'react-router-dom';
import StepList from '@components/StepList/Steps';
import useRequestGetSteps from '@hooks/queries/step/useRequestGetSteps';
import Reports from '@components/Reports/Reports';
+import useRequestGetImages from '@hooks/queries/images/useRequestGetImages';
import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore';
-import {Tab, Tabs, Title} from '@HDesign/index';
+import {Icon, Tab, Tabs, Title} from '@HDesign/index';
+
+import getEventIdByUrl from '@utils/getEventIdByUrl';
import {receiptStyle} from './HomePage.style';
@@ -16,10 +19,23 @@ const HomePage = () => {
const {isAdmin, eventName} = useOutletContext();
const {steps} = useRequestGetSteps();
const {totalExpenseAmount} = useTotalExpenseAmountStore();
+ const {images} = useRequestGetImages();
+ const navigate = useNavigate();
+ const eventId = getEventIdByUrl();
return (
-
+
+ navigate(`/event/${eventId}/images`)} />
+
+ )
+ }
+ />
} />
} />
diff --git a/client/src/pages/ImagesPage/ImagesPage.tsx b/client/src/pages/ImagesPage/ImagesPage.tsx
new file mode 100644
index 000000000..8393ca8b9
--- /dev/null
+++ b/client/src/pages/ImagesPage/ImagesPage.tsx
@@ -0,0 +1,49 @@
+import {css} from '@emotion/react';
+import {useEffect} from 'react';
+
+import Carousel from '@components/Design/components/Carousel/Carousel';
+import useRequestGetImages from '@hooks/queries/images/useRequestGetImages';
+
+import {MainLayout, Top, TopNav} from '@components/Design';
+
+const ImagesPage = () => {
+ const {images} = useRequestGetImages();
+
+ useEffect(() => {
+ document.body.style.overflow = 'hidden';
+
+ return () => {
+ document.body.style.overflow = 'auto';
+ };
+ }, []);
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ url)} />
+
+
+ );
+};
+
+export default ImagesPage;
diff --git a/client/src/pages/MainPage/MainPage.tsx b/client/src/pages/MainPage/MainPage.tsx
index 702972eff..4d0294ef9 100644
--- a/client/src/pages/MainPage/MainPage.tsx
+++ b/client/src/pages/MainPage/MainPage.tsx
@@ -1,3 +1,5 @@
+import useAmplitude from '@hooks/useAmplitude';
+
import {MainLayout} from '@HDesign/index';
import Nav from './Nav/Nav';
@@ -8,10 +10,12 @@ import AddMemberSection from './Section/AddMemberSection';
import ReportSection from './Section/ReportSection';
const MainPage = () => {
+ const {trackStartCreateEvent} = useAmplitude();
+
return (
-
-
+
+
diff --git a/client/src/pages/MainPage/Nav/Nav.tsx b/client/src/pages/MainPage/Nav/Nav.tsx
index 65c7399db..eaf8e13ed 100644
--- a/client/src/pages/MainPage/Nav/Nav.tsx
+++ b/client/src/pages/MainPage/Nav/Nav.tsx
@@ -1,14 +1,21 @@
import {useNavigate} from 'react-router-dom';
-import {useTheme} from '@components/Design/theme/HDesignProvider';
-
-import {Button, Flex, Text, Icon, TopNav, IconButton} from '@HDesign/index';
+import {Button, Text, Icon, TopNav, IconButton} from '@HDesign/index';
import {ROUTER_URLS} from '@constants/routerUrls';
-const Nav = () => {
- const {theme} = useTheme();
+type NavProps = {
+ trackStartCreateEvent: () => void;
+};
+
+const Nav = ({trackStartCreateEvent}: NavProps) => {
const navigate = useNavigate();
+
+ const StartCreateEvent = () => {
+ trackStartCreateEvent();
+ navigate(ROUTER_URLS.createEvent);
+ };
+
return (
@@ -21,12 +28,7 @@ const Nav = () => {
행동대장
- navigate(ROUTER_URLS.createEvent)}
- style={{marginRight: '1rem'}}
- >
+
정산 시작하기
diff --git a/client/src/pages/MainPage/Section/MainSection.tsx b/client/src/pages/MainPage/Section/MainSection.tsx
index 1f7b8367f..83f8d525e 100644
--- a/client/src/pages/MainPage/Section/MainSection.tsx
+++ b/client/src/pages/MainPage/Section/MainSection.tsx
@@ -7,9 +7,18 @@ import Text from '@HDesign/components/Text/Text';
import {ROUTER_URLS} from '@constants/routerUrls';
-const MainSection = () => {
+type MainSectionProps = {
+ trackStartCreateEvent: () => void;
+};
+
+const MainSection = ({trackStartCreateEvent}: MainSectionProps) => {
const navigate = useNavigate();
+ const handleClick = () => {
+ trackStartCreateEvent();
+ navigate(ROUTER_URLS.createEvent);
+ };
+
return (
{
{`행동대장을 통해
간편하게 정산하세요
`}
- navigate(ROUTER_URLS.createEvent)}>
+
정산 시작하기
diff --git a/client/src/pages/SendPage/index.tsx b/client/src/pages/SendPage/index.tsx
new file mode 100644
index 000000000..88432173e
--- /dev/null
+++ b/client/src/pages/SendPage/index.tsx
@@ -0,0 +1,36 @@
+import {useNavigate} from 'react-router-dom';
+
+import useSendPage from '@hooks/useSendPage';
+
+import {FixedButton, FunnelLayout, MainLayout, Select, Text, Top, TopNav} from '@components/Design';
+
+const SendPage = () => {
+ const {topMessage, selectProps, selectResult} = useSendPage();
+ const {accountText, amountText} = topMessage;
+ const {sendMethod, sendMethodIntroduceText, buttonOnClick, buttonText} = selectResult;
+
+ const navigate = useNavigate();
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ {sendMethodIntroduceText[sendMethod]}
+
+ navigate(-1)} onClick={buttonOnClick[sendMethod]}>
+ {buttonText[sendMethod]}
+
+
+
+ );
+};
+
+export default SendPage;
diff --git a/client/src/router.tsx b/client/src/router.tsx
index 81b4ad2cd..9969ce139 100644
--- a/client/src/router.tsx
+++ b/client/src/router.tsx
@@ -4,8 +4,11 @@ import {lazy, Suspense} from 'react';
import ErrorPage from '@pages/ErrorPage/ErrorPage';
import EventLoginPage from '@pages/EventPage/AdminPage/EventLoginPage';
import EventLoader from '@components/Loader/EventLoader';
+import SendErrorPage from '@pages/ErrorPage/SendErrorPage';
+import AuthGate from '@pages/EventPage/AuthGate';
import {EventPage} from '@pages/EventPage';
+import SendPage from '@pages/SendPage';
import {ROUTER_URLS} from '@constants/routerUrls';
@@ -19,6 +22,8 @@ const AddBillFunnel = lazy(() => import('@pages/AddBillFunnel/AddBillFunnel'));
const EventMember = lazy(() => import('@pages/EventPage/AdminPage/EventMember'));
const EditBillPage = lazy(() => import('@pages/EditBillPage/EditBillPage'));
const Account = lazy(() => import('@pages/AccountPage/Account'));
+const ImagesPage = lazy(() => import('@pages/ImagesPage/ImagesPage'));
+const AddImagesPage = lazy(() => import('@pages/AddImagesPage/AddImagesPage'));
const router = createBrowserRouter([
{
@@ -49,13 +54,13 @@ const router = createBrowserRouter([
children: [
{
path: ROUTER_URLS.eventManage,
- element: ,
+ element: (
+ }>
+
+
+ ),
},
{path: ROUTER_URLS.home, element: },
- {
- path: ROUTER_URLS.eventLogin,
- element: ,
- },
],
},
{
@@ -74,6 +79,19 @@ const router = createBrowserRouter([
path: ROUTER_URLS.eventEdit,
element: ,
},
+ {
+ path: ROUTER_URLS.images,
+ element: ,
+ },
+ {
+ path: ROUTER_URLS.addImages,
+ element: ,
+ },
+ {
+ path: ROUTER_URLS.send,
+ element: ,
+ errorElement: ,
+ },
{
path: '*',
element: ,
diff --git a/client/src/store/amplitudeStore.ts b/client/src/store/amplitudeStore.ts
new file mode 100644
index 000000000..afbedc560
--- /dev/null
+++ b/client/src/store/amplitudeStore.ts
@@ -0,0 +1,14 @@
+import * as amplitude from '@amplitude/analytics-browser';
+import {create} from 'zustand';
+
+import {Amplitude} from 'types/amplitude';
+
+type State = {
+ amplitude: Amplitude;
+};
+
+type Action = {};
+
+export const useAmplitudeStore = create(() => ({
+ amplitude: amplitude as Amplitude,
+}));
diff --git a/client/src/store/authStore.ts b/client/src/store/authStore.ts
new file mode 100644
index 000000000..2b95eeb92
--- /dev/null
+++ b/client/src/store/authStore.ts
@@ -0,0 +1,14 @@
+import {create} from 'zustand';
+
+type State = {
+ isAdmin: boolean;
+};
+
+type Action = {
+ updateAuth: (isAdmin: boolean) => void;
+};
+
+export const useAuthStore = create(set => ({
+ isAdmin: false,
+ updateAuth: isAdmin => set(() => ({isAdmin})),
+}));
diff --git a/client/src/types/amplitude.ts b/client/src/types/amplitude.ts
new file mode 100644
index 000000000..6e222118b
--- /dev/null
+++ b/client/src/types/amplitude.ts
@@ -0,0 +1,56 @@
+import AmplitudeClient from '@amplitude/analytics-types';
+
+export interface Amplitude {
+ add: (
+ plugin: AmplitudeClient.Plugin,
+ ) => AmplitudeClient.AmplitudeReturn;
+ extendSession: () => void;
+ flush: () => AmplitudeClient.AmplitudeReturn;
+ getDeviceId: () => string | undefined;
+ getSessionId: () => number | undefined;
+ getUserId: () => string | undefined;
+ groupIdentify: (
+ groupType: string,
+ groupName: string | string[],
+ identify: AmplitudeClient.Identify,
+ eventOptions?: AmplitudeClient.EventOptions | undefined,
+ ) => AmplitudeClient.AmplitudeReturn;
+ identify: (
+ identify: AmplitudeClient.Identify,
+ eventOptions?: AmplitudeClient.EventOptions | undefined,
+ ) => AmplitudeClient.AmplitudeReturn;
+ init: {
+ (apiKey: string, options?: AmplitudeClient.BrowserOptions | undefined): AmplitudeClient.AmplitudeReturn;
+ (
+ apiKey: string,
+ userId?: string | undefined,
+ options?: AmplitudeClient.BrowserOptions | undefined,
+ ): AmplitudeClient.AmplitudeReturn;
+ };
+ logEvent: (
+ eventInput: string | AmplitudeClient.BaseEvent,
+ eventProperties?: Record | undefined,
+ eventOptions?: AmplitudeClient.EventOptions | undefined,
+ ) => AmplitudeClient.AmplitudeReturn;
+ remove: (pluginName: string) => AmplitudeClient.AmplitudeReturn;
+ reset: () => void;
+ revenue: (
+ revenue: AmplitudeClient.Revenue,
+ eventOptions?: AmplitudeClient.EventOptions | undefined,
+ ) => AmplitudeClient.AmplitudeReturn;
+ setDeviceId: (deviceId: string) => void;
+ setGroup: (
+ groupType: string,
+ groupName: string | string[],
+ eventOptions?: AmplitudeClient.EventOptions | undefined,
+ ) => AmplitudeClient.AmplitudeReturn;
+ setOptOut: (optOut: boolean) => void;
+ setSessionId: (sessionId: number) => void;
+ setTransport: (transport: AmplitudeClient.TransportType) => void;
+ setUserId: (userId: string | undefined) => void;
+ track: (
+ eventInput: string | AmplitudeClient.BaseEvent,
+ eventProperties?: Record | undefined,
+ eventOptions?: AmplitudeClient.EventOptions | undefined,
+ ) => AmplitudeClient.AmplitudeReturn;
+}
diff --git a/client/src/types/serviceType.ts b/client/src/types/serviceType.ts
index a2ecca3aa..5e406cee4 100644
--- a/client/src/types/serviceType.ts
+++ b/client/src/types/serviceType.ts
@@ -65,3 +65,12 @@ export interface Report {
export interface Reports {
reports: Report[];
}
+
+export interface Images {
+ images: ImageFile[];
+}
+
+export interface ImageFile {
+ id: number;
+ url: string;
+}
diff --git a/client/src/utils/SessionStorage.ts b/client/src/utils/SessionStorage.ts
new file mode 100644
index 000000000..42527d8c7
--- /dev/null
+++ b/client/src/utils/SessionStorage.ts
@@ -0,0 +1,19 @@
+const SessionStorage = {
+ get: (key: string): T | null => {
+ const savedElement = sessionStorage.getItem(key);
+
+ if (savedElement === null) {
+ return null;
+ }
+
+ const element = JSON.parse(savedElement) as T;
+ return element;
+ },
+
+ set: (key: string, data: T) => {
+ const element = JSON.stringify(data);
+ sessionStorage.setItem(key, element);
+ },
+};
+
+export default SessionStorage;
diff --git a/client/src/utils/detectBrowser.ts b/client/src/utils/detectBrowser.ts
new file mode 100644
index 000000000..7e5557c0a
--- /dev/null
+++ b/client/src/utils/detectBrowser.ts
@@ -0,0 +1,32 @@
+// https://gurtn.tistory.com/214
+const detectBrowser = () => {
+ const browsers = [
+ 'Chrome',
+ 'Opera',
+ 'WebTV',
+ 'Whale',
+ 'Beonex',
+ 'Chimera',
+ 'NetPositive',
+ 'Phoenix',
+ 'Firefox',
+ 'Safari',
+ 'SkipStone',
+ 'Netscape',
+ 'Mozilla',
+ ];
+
+ const userAgent = window.navigator.userAgent.toLowerCase();
+
+ if (userAgent.includes('edg')) {
+ return 'Edge';
+ }
+
+ if (userAgent.includes('trident') || userAgent.includes('msie')) {
+ return 'Internet Explorer';
+ }
+
+ return browsers.find(browser => userAgent.includes(browser.toLowerCase())) || 'Other';
+};
+
+export default detectBrowser;
diff --git a/client/src/utils/udpateMetaTag.ts b/client/src/utils/udpateMetaTag.ts
new file mode 100644
index 000000000..37909878c
--- /dev/null
+++ b/client/src/utils/udpateMetaTag.ts
@@ -0,0 +1,11 @@
+export const updateMetaTag = (name: string, content: string) => {
+ let metaTag = document.querySelector(`meta[property="${name}"]`);
+
+ if (!metaTag) {
+ metaTag = document.createElement('meta');
+ metaTag.setAttribute('property', name);
+ document.head.appendChild(metaTag);
+ }
+
+ metaTag.setAttribute('content', content);
+};
diff --git a/logs/spring-boot-application.2024-08-07.log b/logs/spring-boot-application.2024-08-07.log
deleted file mode 100644
index 5e1ad5f2b..000000000
--- a/logs/spring-boot-application.2024-08-07.log
+++ /dev/null
@@ -1,140044 +0,0 @@
-2024-08-07 11:24:31 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
-2024-08-07 11:24:31 - HV000001: Hibernate Validator 8.0.1.Final
-2024-08-07 11:24:31 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 11:24:31 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 11:24:31 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 11:24:31 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 11:24:31 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 11:24:31 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 11:24:31 - Loaded expression factory via original TCCL
-2024-08-07 11:24:31 - Starting HaengdongApplication using Java 17.0.12 with PID 44170 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong)
-2024-08-07 11:24:31 - Running with Spring Boot v3.3.1, Spring v6.1.10
-2024-08-07 11:24:31 - No active profile set, falling back to 1 default profile: "default"
-2024-08-07 11:24:31 - Loading source class server.haengdong.HaengdongApplication
-2024-08-07 11:24:31 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929
-2024-08-07 11:24:31 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
-2024-08-07 11:24:31 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 11:24:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class]
-2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class]
-2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class]
-2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class]
-2024-08-07 11:24:32 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
-2024-08-07 11:24:32 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled.
-2024-08-07 11:24:32 - Scanning for JPA repositories in packages server.haengdong.
-2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 11:24:32 - Finished Spring Data repository scanning in 18 ms. Found 4 JPA repository interfaces.
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'methodValidationPostProcessor'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
-2024-08-07 11:24:32 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 11:24:32 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'transactionAttributeSource'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'transactionInterceptor'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'observationRegistryPostProcessor'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
-2024-08-07 11:24:32 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1c297897]
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
-2024-08-07 11:24:32 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]
-org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
- at org.apache.tomcat.jni.Library.(Library.java:91)
- at org.apache.tomcat.jni.Library.initialize(Library.java:147)
- at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209)
- at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:138)
- at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'sslBundleRegistry'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'fileWatcher'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'errorPageCustomizer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dispatcherServletRegistration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dispatcherServlet'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'multipartConfigElement'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 11:24:32 - Class not found so assuming code is running on a pre-Java 19 JVM
-java.lang.ClassNotFoundException: java.lang.WrongThreadException
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre19Compat.(Jre19Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:32 - Class not found so assuming code is running on a pre-Java 21 JVM
-java.lang.ClassNotFoundException: java.lang.Thread$Builder
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre21Compat.(Jre21Compat.java:43)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:32 - Class not found so assuming code is running on a pre-Java 22 JVM
-java.lang.ClassNotFoundException: java.text.ListFormat
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre22Compat.(Jre22Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:32 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]]
-2024-08-07 11:24:32 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 11:24:32 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 11:24:32 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
-2024-08-07 11:24:32 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]]
-2024-08-07 11:24:32 - Tomcat initialized with port 8080 (http)
-2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING]
-2024-08-07 11:24:32 - Initializing ProtocolHandler ["http-nio-8080"]
-2024-08-07 11:24:32 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Starting service [Tomcat]
-2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Starting Servlet engine: [Apache Tomcat/10.1.25]
-2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Starting this Loader
-2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:24:32 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
-2024-08-07 11:24:32 - Configured a manager of class [org.apache.catalina.session.StandardManager]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [STARTED]
-2024-08-07 11:24:32 - Initializing Spring embedded WebApplicationContext
-2024-08-07 11:24:32 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
-2024-08-07 11:24:32 - Root WebApplicationContext: initialization completed in 670 ms
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'webMvcObservationFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'observationRegistry'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'propertiesObservationFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'defaultMeterObservationHandler'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'simpleMeterRegistry'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'simpleConfig'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'micrometerClock'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'propertiesMeterFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'h2Console'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dataSource'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'jdbcConnectionDetails'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails'
-2024-08-07 11:24:32 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
-2024-08-07 11:24:32 - HikariPool-1 - configuration:
-2024-08-07 11:24:32 - allowPoolSuspension.............false
-2024-08-07 11:24:32 - autoCommit......................true
-2024-08-07 11:24:32 - catalog.........................none
-2024-08-07 11:24:32 - connectionInitSql...............none
-2024-08-07 11:24:32 - connectionTestQuery.............none
-2024-08-07 11:24:32 - connectionTimeout...............30000
-2024-08-07 11:24:32 - dataSource......................none
-2024-08-07 11:24:32 - dataSourceClassName.............none
-2024-08-07 11:24:32 - dataSourceJNDI..................none
-2024-08-07 11:24:32 - dataSourceProperties............{password=}
-2024-08-07 11:24:32 - driverClassName................."org.h2.Driver"
-2024-08-07 11:24:32 - exceptionOverrideClassName......none
-2024-08-07 11:24:32 - healthCheckProperties...........{}
-2024-08-07 11:24:32 - healthCheckRegistry.............none
-2024-08-07 11:24:32 - idleTimeout.....................600000
-2024-08-07 11:24:32 - initializationFailTimeout.......1
-2024-08-07 11:24:32 - isolateInternalQueries..........false
-2024-08-07 11:24:32 - jdbcUrl.........................jdbc:h2:mem:database
-2024-08-07 11:24:32 - keepaliveTime...................0
-2024-08-07 11:24:32 - leakDetectionThreshold..........0
-2024-08-07 11:24:32 - maxLifetime.....................1800000
-2024-08-07 11:24:32 - maximumPoolSize.................10
-2024-08-07 11:24:32 - metricRegistry..................none
-2024-08-07 11:24:32 - metricsTrackerFactory...........none
-2024-08-07 11:24:32 - minimumIdle.....................10
-2024-08-07 11:24:32 - password........................
-2024-08-07 11:24:32 - poolName........................"HikariPool-1"
-2024-08-07 11:24:32 - readOnly........................false
-2024-08-07 11:24:32 - registerMbeans..................false
-2024-08-07 11:24:32 - scheduledExecutor...............none
-2024-08-07 11:24:32 - schema..........................none
-2024-08-07 11:24:32 - threadFactory...................internal
-2024-08-07 11:24:32 - transactionIsolation............default
-2024-08-07 11:24:32 - username........................"sa"
-2024-08-07 11:24:32 - validationTimeout...............5000
-2024-08-07 11:24:32 - HikariPool-1 - Starting...
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - HikariPool-1 - Start completed.
-2024-08-07 11:24:32 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletEndpointRegistrar'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletEndpointDiscoverer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'webEndpointPathMapper'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'requestContextFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'formContentFilter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'characterEncodingFilter'
-2024-08-07 11:24:32 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
-2024-08-07 11:24:32 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*]
-2024-08-07 11:24:32 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED]
-2024-08-07 11:24:32 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:24:32 - Filter 'requestContextFilter' configured for use
-2024-08-07 11:24:32 - Filter 'webMvcObservationFilter' configured for use
-2024-08-07 11:24:32 - Filter 'characterEncodingFilter' configured for use
-2024-08-07 11:24:32 - Filter 'formContentFilter' configured for use
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [STARTING]
-2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [STARTING_PREP]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [STARTING]
-2024-08-07 11:24:32 - Registered host [localhost]
-2024-08-07 11:24:32 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 11:24:32 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 11:24:32 - Register Context [] for service [StandardService[Tomcat]]
-2024-08-07 11:24:32 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
-2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [STARTED]
-2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [STARTED]
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60292]
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'entityManagerFactory'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'jpaVendorAdapter'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:32 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter'
-2024-08-07 11:24:32 - Creating shared instance of singleton bean 'persistenceManagedTypes'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:32 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder'
-2024-08-07 11:24:32 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes'
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:32 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:32 - Building JPA container EntityManagerFactory for persistence unit 'default'
-2024-08-07 11:24:32 - [javax.management.remote.rmi.RMIConnectionImpl@7503166b: connectionId=rmi://127.0.0.1 1] closing.
-2024-08-07 11:24:32 - [javax.management.remote.rmi.RMIConnectionImpl@7503166b: connectionId=rmi://127.0.0.1 1] closed.
-2024-08-07 11:24:32 - PersistenceUnitInfo [
- name: default
- persistence provider classname: null
- classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
- excludeUnlistedClasses: true
- JTA datasource: null
- Non JTA datasource: HikariDataSource (HikariPool-1)
- Transaction type: RESOURCE_LOCAL
- PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/
- Shared Cache Mode: UNSPECIFIED
- Validation Mode: AUTO
- Jar files URLs []
- Managed classes names [
- server.haengdong.domain.action.Action
- server.haengdong.domain.action.BillAction
- server.haengdong.domain.action.MemberAction
- server.haengdong.domain.event.Event
- server.haengdong.domain.event.EventStep]
- Mapping files names []
- Properties []
-2024-08-07 11:24:32 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator].
-2024-08-07 11:24:32 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator].
-2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - HHH000412: Hibernate ORM core version 6.5.2.Final
-2024-08-07 11:24:32 - HHH000206: 'hibernate.properties' not found
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator]
-2024-08-07 11:24:32 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered
-2024-08-07 11:24:32 - HHH000026: Second-level cache disabled
-2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@9cc0505
-2024-08-07 11:24:32 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@9cc0505
-2024-08-07 11:24:32 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@9cc0505
-2024-08-07 11:24:32 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@645d4639
-2024-08-07 11:24:32 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@645d4639
-2024-08-07 11:24:32 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@8ee03f5
-2024-08-07 11:24:32 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@8ee03f5
-2024-08-07 11:24:32 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@5ad40184
-2024-08-07 11:24:32 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@5ad40184
-2024-08-07 11:24:32 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3359c3f6
-2024-08-07 11:24:32 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3359c3f6
-2024-08-07 11:24:32 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3359c3f6
-2024-08-07 11:24:32 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3d3b272a
-2024-08-07 11:24:32 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3d3b272a
-2024-08-07 11:24:32 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3d3b272a
-2024-08-07 11:24:32 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@45b27ad3
-2024-08-07 11:24:32 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@45b27ad3
-2024-08-07 11:24:32 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3f908bc0
-2024-08-07 11:24:32 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@422ba9b7
-2024-08-07 11:24:32 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@422ba9b7
-2024-08-07 11:24:32 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@26cdd4af
-2024-08-07 11:24:32 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@707f4647
-2024-08-07 11:24:32 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 11:24:32 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 11:24:32 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 11:24:32 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 11:24:32 - Adding type registration int -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 11:24:32 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 11:24:32 - Adding type registration long -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 11:24:32 - Adding type registration long -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 11:24:32 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 11:24:32 - Adding type registration float -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 11:24:32 - Adding type registration float -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 11:24:32 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 11:24:32 - Adding type registration double -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 11:24:32 - Adding type registration double -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 11:24:32 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 11:24:32 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@42cfd794
-2024-08-07 11:24:32 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@42cfd794
-2024-08-07 11:24:32 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@43778371
-2024-08-07 11:24:32 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@43778371
-2024-08-07 11:24:32 - Adding type registration character -> org.hibernate.type.BasicTypeReference@71beada8
-2024-08-07 11:24:32 - Adding type registration char -> org.hibernate.type.BasicTypeReference@71beada8
-2024-08-07 11:24:32 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@71beada8
-2024-08-07 11:24:32 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@17f41739
-2024-08-07 11:24:32 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b3b1124
-2024-08-07 11:24:32 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b3b1124
-2024-08-07 11:24:32 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@54286339
-2024-08-07 11:24:32 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 11:24:32 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 11:24:32 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 11:24:32 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 11:24:32 - Adding type registration text -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 11:24:32 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 11:24:32 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 11:24:32 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 11:24:32 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 11:24:32 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 11:24:32 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@56499781
-2024-08-07 11:24:32 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 11:24:32 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2a2798a2
-2024-08-07 11:24:32 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 11:24:32 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@31f1b268
-2024-08-07 11:24:32 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 11:24:32 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2833c093
-2024-08-07 11:24:32 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2833c093
-2024-08-07 11:24:32 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7598d675
-2024-08-07 11:24:32 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7598d675
-2024-08-07 11:24:32 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 11:24:32 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 11:24:32 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 11:24:32 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 11:24:32 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 11:24:32 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 11:24:32 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0
-2024-08-07 11:24:32 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa
-2024-08-07 11:24:32 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@34a33343
-2024-08-07 11:24:32 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@34a33343
-2024-08-07 11:24:32 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@98722ef
-2024-08-07 11:24:32 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 11:24:32 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983
-2024-08-07 11:24:32 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 11:24:32 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 11:24:32 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@126254ec
-2024-08-07 11:24:32 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 11:24:32 - Adding type registration date -> org.hibernate.type.BasicTypeReference@1c788d08
-2024-08-07 11:24:32 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1c788d08
-2024-08-07 11:24:32 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2adc1e84
-2024-08-07 11:24:32 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2adc1e84
-2024-08-07 11:24:32 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 11:24:32 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 11:24:32 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 11:24:32 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 11:24:32 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 11:24:32 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 11:24:32 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@1df06ecd
-2024-08-07 11:24:32 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@57927bc9
-2024-08-07 11:24:32 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@323efafe
-2024-08-07 11:24:32 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@323efafe
-2024-08-07 11:24:32 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@32dbca45
-2024-08-07 11:24:32 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@32dbca45
-2024-08-07 11:24:32 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@32dbca45
-2024-08-07 11:24:32 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2cc34cd5
-2024-08-07 11:24:32 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@684b26b7
-2024-08-07 11:24:32 - Adding type registration class -> org.hibernate.type.BasicTypeReference@2de7c84a
-2024-08-07 11:24:32 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2de7c84a
-2024-08-07 11:24:32 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 11:24:32 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 11:24:32 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 11:24:32 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 11:24:32 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 11:24:32 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 11:24:32 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 11:24:32 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 11:24:32 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 11:24:32 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 11:24:32 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 11:24:32 - Adding type registration url -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 11:24:32 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 11:24:32 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4f7ba0af
-2024-08-07 11:24:32 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 11:24:32 - Adding type registration object -> org.hibernate.type.JavaObjectType@1dfe5dd1
-2024-08-07 11:24:32 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1dfe5dd1
-2024-08-07 11:24:32 - Adding type registration null -> org.hibernate.type.NullType@79445efb
-2024-08-07 11:24:32 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1592e540
-2024-08-07 11:24:32 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3e2772a9
-2024-08-07 11:24:32 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@4449b273
-2024-08-07 11:24:32 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1fa18f87
-2024-08-07 11:24:32 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1d9bd1d6
-2024-08-07 11:24:32 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@18ac4af6
-2024-08-07 11:24:32 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@117fb9ba
-2024-08-07 11:24:32 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2b1d1a5
-2024-08-07 11:24:32 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] into BootstrapContext; was [null]
-2024-08-07 11:24:32 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90) [was null]
-2024-08-07 11:24:32 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@395eb363] into BootstrapContext; was [null]
-2024-08-07 11:24:32 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@1e194966] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@160546b1]
-2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - No LoadTimeWeaver setup: ignoring JPA class transformer
-2024-08-07 11:24:32 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90]
-2024-08-07 11:24:32 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90]
-2024-08-07 11:24:32 - Database ->
- name : H2
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 11:24:32 - Driver ->
- name : H2 JDBC Driver
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 11:24:32 - JDBC version : 4.2
-2024-08-07 11:24:32 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224
-2024-08-07 11:24:32 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case
-2024-08-07 11:24:32 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor)
-2024-08-07 11:24:32 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor)
-2024-08-07 11:24:32 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor)
-2024-08-07 11:24:32 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 11:24:32 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 11:24:32 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor)
-2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0)
-2024-08-07 11:24:32 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:32 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015)
-2024-08-07 11:24:32 - Adding type registration Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 11:24:32 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 11:24:32 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34647f58] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@14b96c1e]
-2024-08-07 11:24:33 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}]
-2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.action.Action
-2024-08-07 11:24:33 - Import with entity name Action
-2024-08-07 11:24:33 - Bind entity server.haengdong.domain.action.Action on table action
-2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:24:33 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0)
-2024-08-07 11:24:33 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id]
-2024-08-07 11:24:33 - building BasicValue for id
-2024-08-07 11:24:33 - Skipping column re-registration: action.id
-2024-08-07 11:24:33 - Building property id
-2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Building property event
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence]
-2024-08-07 11:24:33 - building BasicValue for sequence
-2024-08-07 11:24:33 - Skipping column re-registration: action.sequence
-2024-08-07 11:24:33 - Building property sequence
-2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.action.BillAction
-2024-08-07 11:24:33 - Import with entity name BillAction
-2024-08-07 11:24:33 - Bind entity server.haengdong.domain.action.BillAction on table bill_action
-2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id]
-2024-08-07 11:24:33 - building BasicValue for id
-2024-08-07 11:24:33 - Skipping column re-registration: bill_action.id
-2024-08-07 11:24:33 - Building property id
-2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Building property action
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property price with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price]
-2024-08-07 11:24:33 - building BasicValue for price
-2024-08-07 11:24:33 - Skipping column re-registration: bill_action.price
-2024-08-07 11:24:33 - Building property price
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property title with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title]
-2024-08-07 11:24:33 - building BasicValue for title
-2024-08-07 11:24:33 - Skipping column re-registration: bill_action.title
-2024-08-07 11:24:33 - Building property title
-2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction
-2024-08-07 11:24:33 - Import with entity name MemberAction
-2024-08-07 11:24:33 - Bind entity server.haengdong.domain.action.MemberAction on table member_action
-2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id]
-2024-08-07 11:24:33 - building BasicValue for id
-2024-08-07 11:24:33 - Skipping column re-registration: member_action.id
-2024-08-07 11:24:33 - Building property id
-2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Building property action
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property memberGroupId with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId]
-2024-08-07 11:24:33 - building BasicValue for memberGroupId
-2024-08-07 11:24:33 - Skipping column re-registration: member_action.member_group_id
-2024-08-07 11:24:33 - Building property memberGroupId
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property memberName with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName]
-2024-08-07 11:24:33 - building BasicValue for memberName
-2024-08-07 11:24:33 - Skipping column re-registration: member_action.member_name
-2024-08-07 11:24:33 - Building property memberName
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property status with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status]
-2024-08-07 11:24:33 - building BasicValue for status
-2024-08-07 11:24:33 - Skipping column re-registration: member_action.status
-2024-08-07 11:24:33 - Building property status
-2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.event.Event
-2024-08-07 11:24:33 - Import with entity name Event
-2024-08-07 11:24:33 - Bind entity server.haengdong.domain.event.Event on table event
-2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id]
-2024-08-07 11:24:33 - building BasicValue for id
-2024-08-07 11:24:33 - Skipping column re-registration: event.id
-2024-08-07 11:24:33 - Building property id
-2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name]
-2024-08-07 11:24:33 - building BasicValue for name
-2024-08-07 11:24:33 - Skipping column re-registration: event.name
-2024-08-07 11:24:33 - Building property name
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property password with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password]
-2024-08-07 11:24:33 - building BasicValue for password
-2024-08-07 11:24:33 - Skipping column re-registration: event.password
-2024-08-07 11:24:33 - Building property password
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property token with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token]
-2024-08-07 11:24:33 - building BasicValue for token
-2024-08-07 11:24:33 - Skipping column re-registration: event.token
-2024-08-07 11:24:33 - Building property token
-2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.event.EventStep
-2024-08-07 11:24:33 - Import with entity name EventStep
-2024-08-07 11:24:33 - Bind entity server.haengdong.domain.event.EventStep on table event_step
-2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id]
-2024-08-07 11:24:33 - building BasicValue for id
-2024-08-07 11:24:33 - Skipping column re-registration: event_step.id
-2024-08-07 11:24:33 - Building property id
-2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - Building property event
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name]
-2024-08-07 11:24:33 - building BasicValue for name
-2024-08-07 11:24:33 - Skipping column re-registration: event_step.name
-2024-08-07 11:24:33 - Building property name
-2024-08-07 11:24:33 - Binding column: AnnotatedColumn()
-2024-08-07 11:24:33 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence]
-2024-08-07 11:24:33 - building BasicValue for sequence
-2024-08-07 11:24:33 - Skipping column re-registration: event_step.sequence
-2024-08-07 11:24:33 - Building property sequence
-2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for price
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for title
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for memberName
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for status
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for password
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for token
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [action]
-2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action]
-2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action]
-2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [event]
-2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step]
-2024-08-07 11:24:33 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0)
-2024-08-07 11:24:33 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:24:33 - Building session factory
-2024-08-07 11:24:33 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 11:24:33 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@7957aa57, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7b92ea9d, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator=
-, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2064990266383354539, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=44170, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2064990266383354539, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@6b3bc1f6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0}
-2024-08-07 11:24:33 - Session factory constructed with filter configurations : {}
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 11:24:33 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 11:24:33 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 11:24:33 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 11:24:33 - Loaded expression factory via original TCCL
-2024-08-07 11:24:33 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 11:24:33 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 11:24:33 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@59d09ff3] under count; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@49322d04] under every; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@b6b746b] under any; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under sinh; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under cosh; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under tanh; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under pi; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under log; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : length -> character_length
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@33214124] under position; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@862624f] under overlay; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@7c8a91e2] under trim; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@79b0956e] under cast; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@35451ba6] under collate; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@2a7392a3] under extract; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@5382a35f] under ifnull; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@4a7c72af] under pad; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@1b53e6fc] under str; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4419cd6e] under format; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@2fccd98f] under timestampadd; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@261099e1] under timestampdiff; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : dateadd -> timestampadd
-2024-08-07 11:24:33 - Registering alternate key : datediff -> timestampdiff
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under current_date; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under current_time; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under current_timestamp; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : current date -> current_date
-2024-08-07 11:24:33 - Registering alternate key : current time -> current_time
-2024-08-07 11:24:33 - Registering alternate key : current timestamp -> current_timestamp
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under local_date; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under local_time; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under local_datetime; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under offset_datetime; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : local date -> local_date
-2024-08-07 11:24:33 - Registering alternate key : local time -> local_time
-2024-08-07 11:24:33 - Registering alternate key : local datetime -> local_datetime
-2024-08-07 11:24:33 - Registering alternate key : offset datetime -> offset_datetime
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under instant; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : current_instant -> instant
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@2f64f99f] under sql; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@16c1d11] under count; prior registration was org.hibernate.dialect.function.CountFunction@59d09ff3
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@2fc40856] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5543d800] under mod; prior registration was NamedSqmFunctionTemplate(mod)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : day -> day_of_month
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@34d3409d
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@16732340
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@7a2fd94c] under trunc; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : truncate -> trunc
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@637c8632] under date_trunc; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : chr -> char
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156eeff1] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@33214124
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34001c5d] under concat; prior registration was NamedSqmFunctionTemplate(concat)
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : every -> bool_and
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null
-2024-08-07 11:24:33 - Registering alternate key : any -> bool_or
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@30e15628] under format; prior registration was org.hibernate.dialect.function.FormatFunction@4419cd6e
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@34f8ce89] under listagg; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@10bcbbce] under mode; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@27234b7c] under percentile_cont; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@125a8ab6] under percentile_disc; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under rank; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@52d01430] under dense_rank; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under percent_rank; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@41948c13] under cume_dist; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5a45c218] under array; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2c6efee3] under array_list; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@6aa18912] under array_agg; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@7c6fc278] under array_position; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7a78d2aa] under array_positions; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@78f35e39] under array_positions_list; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@11896124] under array_length; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@20462820] under array_concat; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5b5a89d1] under array_prepend; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@267b678f] under array_append; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4edd8a0a] under array_contains; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1a73f3d1] under array_contains_nullable; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1018f702] under array_overlaps; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@5400db7e] under array_overlaps_nullable; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73905dff] under array_get; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@12478b4e] under array_set; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@774189d0] under array_remove; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@7f584d0c] under array_remove_index; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4c599679] under array_slice; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@1bcf2c64] under array_replace; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b5bddfe] under array_trim; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5570dc21] under array_fill; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1477d4e6] under array_fill_list; prior registration was null
-2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@48da5106] under array_to_string; prior registration was null
-2024-08-07 11:24:33 - abs(NUMERIC arg)
-2024-08-07 11:24:33 - Double acos(NUMERIC arg)
-2024-08-07 11:24:33 - Boolean any(BOOLEAN predicate)
-2024-08-07 11:24:33 - array( ... )
-2024-08-07 11:24:33 - array_agg(arg)
-2024-08-07 11:24:33 - array_append( ... )
-2024-08-07 11:24:33 - array_concat( ... )
-2024-08-07 11:24:33 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 11:24:33 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 11:24:33 - array_fill(OBJECT element, INTEGER elementCount)
-2024-08-07 11:24:33 - array_fill_list(OBJECT element, INTEGER elementCount)
-2024-08-07 11:24:33 - array_get(ARRAY array, INTEGER index)
-2024-08-07 11:24:33 - Integer array_length(ARRAY array)
-2024-08-07 11:24:33 - array_list( ... )
-2024-08-07 11:24:33 - Boolean array_overlaps(ARRAY array0, OBJECT array1)
-2024-08-07 11:24:33 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1)
-2024-08-07 11:24:33 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition])
-2024-08-07 11:24:33 - int[] array_positions(ARRAY array, OBJECT element)
-2024-08-07 11:24:33 - List array_positions_list(ARRAY array, OBJECT element)
-2024-08-07 11:24:33 - array_prepend( ... )
-2024-08-07 11:24:33 - array_remove( ... )
-2024-08-07 11:24:33 - array_remove_index( ... )
-2024-08-07 11:24:33 - array_replace( ... )
-2024-08-07 11:24:33 - array_set( ... )
-2024-08-07 11:24:33 - array_slice(ARRAY array, INTEGER start, INTEGER end)
-2024-08-07 11:24:33 - String array_to_string( ... )
-2024-08-07 11:24:33 - array_trim(ARRAY array, INTEGER elementsToRemove)
-2024-08-07 11:24:33 - Integer ascii(STRING arg)
-2024-08-07 11:24:33 - Double asin(NUMERIC arg)
-2024-08-07 11:24:33 - Double atan(NUMERIC arg)
-2024-08-07 11:24:33 - Double atan2(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 11:24:33 - avg(NUMERIC arg)
-2024-08-07 11:24:33 - bit_and(arg)
-2024-08-07 11:24:33 - Integer bit_length(STRING_OR_CLOB arg)
-2024-08-07 11:24:33 - bit_or(arg)
-2024-08-07 11:24:33 - bitand(arg0, arg1)
-2024-08-07 11:24:33 - bitnot(arg)
-2024-08-07 11:24:33 - bitor(arg0, arg1)
-2024-08-07 11:24:33 - bitxor(arg0, arg1)
-2024-08-07 11:24:33 - Boolean bool_and(BOOLEAN predicate)
-2024-08-07 11:24:33 - Boolean bool_or(BOOLEAN predicate)
-2024-08-07 11:24:33 - cast(arg as Type)
-2024-08-07 11:24:33 - ceiling(NUMERIC arg)
-2024-08-07 11:24:33 - Character char(INTEGER arg)
-2024-08-07 11:24:33 - Integer character_length(STRING_OR_CLOB arg)
-2024-08-07 11:24:33 - Character chr(INTEGER arg)
-2024-08-07 11:24:33 - coalesce(arg0[, arg1[, ...]])
-2024-08-07 11:24:33 - String collate(STRING string as COLLATION collation)
-2024-08-07 11:24:33 - String concat(STRING string0[, STRING string1[, ...]])
-2024-08-07 11:24:33 - Double cos(NUMERIC arg)
-2024-08-07 11:24:33 - Double cosh(NUMERIC arg)
-2024-08-07 11:24:33 - Double cot(NUMERIC arg)
-2024-08-07 11:24:33 - Long count([distinct ]{arg|*})
-2024-08-07 11:24:33 - Double cume_dist([arg0[, ...]])
-2024-08-07 11:24:33 - Date curdate()
-2024-08-07 11:24:33 - Date current date
-2024-08-07 11:24:33 - Time current time
-2024-08-07 11:24:33 - Timestamp current timestamp
-2024-08-07 11:24:33 - Date current_date
-2024-08-07 11:24:33 - Instant current_instant
-2024-08-07 11:24:33 - Time current_time
-2024-08-07 11:24:33 - Timestamp current_timestamp
-2024-08-07 11:24:33 - Time curtime()
-2024-08-07 11:24:33 - date_trunc(STRING field, TEMPORAL datetime)
-2024-08-07 11:24:33 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 11:24:33 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 11:24:33 - Integer day(DATE arg)
-2024-08-07 11:24:33 - Integer day_of_month(DATE arg)
-2024-08-07 11:24:33 - Integer day_of_week(DATE arg)
-2024-08-07 11:24:33 - Integer day_of_year(DATE arg)
-2024-08-07 11:24:33 - String dayname(DATE arg)
-2024-08-07 11:24:33 - Double degrees(NUMERIC arg)
-2024-08-07 11:24:33 - Long dense_rank([arg0[, ...]])
-2024-08-07 11:24:33 - Boolean every(BOOLEAN predicate)
-2024-08-07 11:24:33 - Double exp(NUMERIC arg)
-2024-08-07 11:24:33 - extract(TEMPORAL_UNIT field from TEMPORAL arg)
-2024-08-07 11:24:33 - first_valueANY value
-2024-08-07 11:24:33 - floor(NUMERIC arg)
-2024-08-07 11:24:33 - String format(TEMPORAL datetime as STRING pattern)
-2024-08-07 11:24:33 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 11:24:33 - Integer hour(TIME arg)
-2024-08-07 11:24:33 - ifnull(arg0, arg1)
-2024-08-07 11:24:33 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement)
-2024-08-07 11:24:33 - Instant instant
-2024-08-07 11:24:33 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]])
-2024-08-07 11:24:33 - lagANY value[, INTEGER offset[, ANY default]]
-2024-08-07 11:24:33 - last_valueANY value
-2024-08-07 11:24:33 - leadANY value[, INTEGER offset[, ANY default]]
-2024-08-07 11:24:33 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 11:24:33 - String left(STRING string, INTEGER length)
-2024-08-07 11:24:33 - Integer length(STRING_OR_CLOB arg)
-2024-08-07 11:24:33 - String listagg(STRING arg0, STRING arg1)
-2024-08-07 11:24:33 - Double ln(NUMERIC arg)
-2024-08-07 11:24:33 - LocalDate local date
-2024-08-07 11:24:33 - LocalDateTime local datetime
-2024-08-07 11:24:33 - LocalTime local time
-2024-08-07 11:24:33 - LocalDate local_date
-2024-08-07 11:24:33 - LocalDateTime local_datetime
-2024-08-07 11:24:33 - LocalTime local_time
-2024-08-07 11:24:33 - Time localtime
-2024-08-07 11:24:33 - Timestamp localtimestamp
-2024-08-07 11:24:33 - Integer locate(STRING pattern, STRING string[, INTEGER start])
-2024-08-07 11:24:33 - Double log(NUMERIC base, NUMERIC arg)
-2024-08-07 11:24:33 - Double log10(NUMERIC arg)
-2024-08-07 11:24:33 - String lower(STRING string)
-2024-08-07 11:24:33 - String lpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 11:24:33 - String ltrim(STRING string)
-2024-08-07 11:24:33 - max(COMPARABLE arg)
-2024-08-07 11:24:33 - Double median(NUMERIC arg)
-2024-08-07 11:24:33 - Integer microsecond(TIME arg)
-2024-08-07 11:24:33 - min(COMPARABLE arg)
-2024-08-07 11:24:33 - Integer minute(TIME arg)
-2024-08-07 11:24:33 - Integer mod(INTEGER arg0, INTEGER arg1)
-2024-08-07 11:24:33 - mode()
-2024-08-07 11:24:33 - Integer month(DATE arg)
-2024-08-07 11:24:33 - String monthname(DATE arg)
-2024-08-07 11:24:33 - Timestamp now()
-2024-08-07 11:24:33 - nth_valueANY value, INTEGER nth
-2024-08-07 11:24:33 - nullif(arg0, arg1)
-2024-08-07 11:24:33 - Integer octet_length(STRING_OR_CLOB arg)
-2024-08-07 11:24:33 - OffsetDateTime offset datetime
-2024-08-07 11:24:33 - OffsetDateTime offset_datetime
-2024-08-07 11:24:33 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length])
-2024-08-07 11:24:33 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character])
-2024-08-07 11:24:33 - Double percent_rank([arg0[, ...]])
-2024-08-07 11:24:33 - percentile_cont(NUMERIC arg)
-2024-08-07 11:24:33 - percentile_disc(NUMERIC arg)
-2024-08-07 11:24:33 - Double pi
-2024-08-07 11:24:33 - Integer position(STRING pattern in STRING string)
-2024-08-07 11:24:33 - Double power(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 11:24:33 - Integer quarter(DATE arg)
-2024-08-07 11:24:33 - Double radians(NUMERIC arg)
-2024-08-07 11:24:33 - Double rand([INTEGER seed])
-2024-08-07 11:24:33 - Long rank([arg0[, ...]])
-2024-08-07 11:24:33 - String repeat(STRING string, INTEGER times)
-2024-08-07 11:24:33 - String replace(STRING string, STRING pattern, STRING replacement)
-2024-08-07 11:24:33 - String right(STRING string, INTEGER length)
-2024-08-07 11:24:33 - round(NUMERIC number[, INTEGER places])
-2024-08-07 11:24:33 - Long row_number()
-2024-08-07 11:24:33 - Long rownum()
-2024-08-07 11:24:33 - String rpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 11:24:33 - String rtrim(STRING string)
-2024-08-07 11:24:33 - Integer second(TIME arg)
-2024-08-07 11:24:33 - Integer sign(NUMERIC arg)
-2024-08-07 11:24:33 - Double sin(NUMERIC arg)
-2024-08-07 11:24:33 - Double sinh(NUMERIC arg)
-2024-08-07 11:24:33 - String soundex(arg)
-2024-08-07 11:24:33 - String space(INTEGER arg)
-2024-08-07 11:24:33 - Object sql
-2024-08-07 11:24:33 - Double sqrt(NUMERIC arg)
-2024-08-07 11:24:33 - Double stddev_pop(NUMERIC arg)
-2024-08-07 11:24:33 - Double stddev_samp(NUMERIC arg)
-2024-08-07 11:24:33 - String str(arg)
-2024-08-07 11:24:33 - String substr(STRING string, INTEGER start[, INTEGER length])
-2024-08-07 11:24:33 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length])
-2024-08-07 11:24:33 - sum(arg)
-2024-08-07 11:24:33 - Timestamp sysdate
-2024-08-07 11:24:33 - Double tan(NUMERIC arg)
-2024-08-07 11:24:33 - Double tanh(NUMERIC arg)
-2024-08-07 11:24:33 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 11:24:33 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 11:24:33 - String translate(STRING arg0, STRING arg1, STRING arg2)
-2024-08-07 11:24:33 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1)
-2024-08-07 11:24:33 - trunc( ... )
-2024-08-07 11:24:33 - truncate( ... )
-2024-08-07 11:24:33 - String upper(STRING string)
-2024-08-07 11:24:33 - Double var_pop(NUMERIC arg)
-2024-08-07 11:24:33 - Double var_samp(NUMERIC arg)
-2024-08-07 11:24:33 - Integer week(DATE arg)
-2024-08-07 11:24:33 - Integer year(DATE arg)
-2024-08-07 11:24:33 - Starting QueryInterpretationCache(2048)
-2024-08-07 11:24:33 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 11:24:33 - Configured EntityCopyObserver strategy: disallow
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action]
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action]
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name]
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event]
-2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event]
-2024-08-07 11:24:33 - Starting post-init callbacks
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action]
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action]
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event]
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event]
-2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:33 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@32e6ebe8: connectionId=rmi://127.0.0.1 2] closing.
-2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@32e6ebe8: connectionId=rmi://127.0.0.1 2] closed.
-2024-08-07 11:24:33 - Created new SQL alias : ba1_0
-2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction]
-2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@38dc1c50] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action]
-2024-08-07 11:24:33 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.BillAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action]
- | +-BasicFetch [server.haengdong.domain.action.BillAction.price]
- | \-BasicFetch [server.haengdong.domain.action.BillAction.title]
-
-2024-08-07 11:24:33 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) {
- primaryTableReference : bill_action as ba1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.action.BillAction
-2024-08-07 11:24:33 - Version select: select id from bill_action where id=?
-2024-08-07 11:24:33 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default)
-2024-08-07 11:24:33 - Update (0): update bill_action set action_id=?,price=?,title=? where id=?
-2024-08-07 11:24:33 - Delete (0): delete from bill_action where id=?
-2024-08-07 11:24:33 - Created new SQL alias : ma1_0
-2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction]
-2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@435e224d] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action]
-2024-08-07 11:24:33 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.MemberAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName]
- | \-BasicFetch [server.haengdong.domain.action.MemberAction.status]
-
-2024-08-07 11:24:33 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) {
- primaryTableReference : member_action as ma1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.action.MemberAction
-2024-08-07 11:24:33 - Version select: select id from member_action where id=?
-2024-08-07 11:24:33 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default)
-2024-08-07 11:24:33 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=?
-2024-08-07 11:24:33 - Delete (0): delete from member_action where id=?
-2024-08-07 11:24:33 - Created new SQL alias : e1_0
-2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event]
-2024-08-07 11:24:33 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.Event]
- | +-BasicFetch [server.haengdong.domain.event.Event.name]
- | +-BasicFetch [server.haengdong.domain.event.Event.password]
- | \-BasicFetch [server.haengdong.domain.event.Event.token]
-
-2024-08-07 11:24:33 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : server.haengdong.domain.event.Event) {
- primaryTableReference : event as e1_0
- }
- }
- }
-
-2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.event.Event
-2024-08-07 11:24:33 - Version select: select id from event where id=?
-2024-08-07 11:24:33 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default)
-2024-08-07 11:24:33 - Update (0): update event set name=?,password=?,token=? where id=?
-2024-08-07 11:24:33 - Delete (0): delete from event where id=?
-2024-08-07 11:24:33 - Created new SQL alias : a1_0
-2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action]
-2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event]
-2024-08-07 11:24:33 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.Action]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event]
- | \-BasicFetch [server.haengdong.domain.action.Action.sequence]
-
-2024-08-07 11:24:33 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : server.haengdong.domain.action.Action) {
- primaryTableReference : action as a1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.action.Action
-2024-08-07 11:24:33 - Version select: select id from action where id=?
-2024-08-07 11:24:33 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default)
-2024-08-07 11:24:33 - Update (0): update action set event_id=?,sequence=? where id=?
-2024-08-07 11:24:33 - Delete (0): delete from action where id=?
-2024-08-07 11:24:33 - Created new SQL alias : es1_0
-2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep]
-2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39c93af6] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event]
-2024-08-07 11:24:33 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.EventStep]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event]
- | +-BasicFetch [server.haengdong.domain.event.EventStep.name]
- | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence]
-
-2024-08-07 11:24:33 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) {
- primaryTableReference : event_step as es1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.event.EventStep
-2024-08-07 11:24:33 - Version select: select id from event_step where id=?
-2024-08-07 11:24:33 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default)
-2024-08-07 11:24:33 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=?
-2024-08-07 11:24:33 - Delete (0): delete from event_step where id=?
-2024-08-07 11:24:33 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
-2024-08-07 11:24:33 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34647f58] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@3bede349]
-2024-08-07 11:24:33 - Checking 0 named HQL queries
-2024-08-07 11:24:33 - Checking 0 named SQL queries
-2024-08-07 11:24:33 -
- drop table if exists action cascade
-2024-08-07 11:24:33 -
- drop table if exists bill_action cascade
-2024-08-07 11:24:33 -
- drop table if exists event cascade
-2024-08-07 11:24:33 -
- drop table if exists event_step cascade
-2024-08-07 11:24:33 -
- drop table if exists member_action cascade
-2024-08-07 11:24:33 -
- create table action (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- primary key (id)
- )
-2024-08-07 11:24:33 -
- create table bill_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- price bigint,
- title varchar(30),
- primary key (id)
- )
-2024-08-07 11:24:33 -
- create table event (
- id bigint generated by default as identity,
- name varchar(255),
- password varchar(255),
- token varchar(255),
- primary key (id)
- )
-2024-08-07 11:24:33 -
- create table event_step (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- name varchar(255),
- primary key (id)
- )
-2024-08-07 11:24:33 -
- create table member_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- member_group_id bigint,
- member_name varchar(255),
- status enum ('IN','OUT'),
- primary key (id)
- )
-2024-08-07 11:24:33 -
- alter table if exists action
- add constraint FKgf0qmub9va1xbe44nehny31yw
- foreign key (event_id)
- references event
-2024-08-07 11:24:33 -
- alter table if exists bill_action
- add constraint FK54tx517tp0ry6453olkply4us
- foreign key (action_id)
- references action
-2024-08-07 11:24:33 -
- alter table if exists event_step
- add constraint FKe3rkib91cvl0x5w9wqkshmn81
- foreign key (event_id)
- references event
-2024-08-07 11:24:33 -
- alter table if exists member_action
- add constraint FK5jna51dn8fs2ir52l4uwn517u
- foreign key (action_id)
- references action
-2024-08-07 11:24:33 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@5b8ba1d2
-2024-08-07 11:24:33 - Registering SessionFactory: f39fae5f-3cb7-45e0-a4fe-f8156f66a2a2 ()
-2024-08-07 11:24:33 - Not binding SessionFactory to JNDI, no JNDI name configured
-2024-08-07 11:24:33 - Instantiated SessionFactory
-2024-08-07 11:24:33 - Initialized JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'haengdongApplication'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'actionService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'billActionRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#3'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpaMappingContext'
-2024-08-07 11:24:33 - Initializing JpaMetamodelMappingContext…
-2024-08-07 11:24:33 - Finished initializing JpaMetamodelMappingContext
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Statistics initialized [enabled=false]
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'repositoryTagsProvider'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider'
-2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository…
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Looking up named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Looking up named query BillAction.findByAction_Event
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query BillAction.findByAction_Event
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Looking up named query BillAction.findByAction_Id
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query BillAction.findByAction_Id
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository.
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#1'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0'
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository…
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Looking up named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Looking up named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Hibernate is in classpath; If applicable, HQL parser will be used.
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.event = :event
-
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:24:33 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.sequence >= :sequence
-
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence)
-2024-08-07 11:24:33 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [GREATER_THAN_OR_EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence`
- :sequence
- <- [GREATER_THAN_OR_EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.findAllByEvent.count
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:24:33 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - HQL : select distinct m.memberName
-from MemberAction m
-where m.action.event = :event
-
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:24:33 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select(distinct)]
- -> [selection]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- <- [selection]
- <- [select(distinct)]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 11:24:33 - Looking up named query MemberAction.findByAction
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query MemberAction.findByAction
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository.
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#2'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0'
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.event.EventRepository…
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Looking up named query Event.findByToken
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query Event.findByToken
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository.
-2024-08-07 11:24:33 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'billActionService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'actionRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#0'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0'
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.action.ActionRepository…
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query Action.findLastByEvent.count
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - HQL : SELECT a
-FROM Action a
-WHERE a.event = :event
-ORDER BY a.sequence DESC
-LIMIT 1
-
-2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:24:33 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.Action(a)`
- <- [root] - `server.haengdong.domain.action.Action(a)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.Action(a)`
- <- [root] - `server.haengdong.domain.action.Action(a)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.Action(a).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 11:24:33 - Looking up named query Action.findByIdAndEvent
-2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:24:33 - Did not find named query Action.findByIdAndEvent
-2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository.
-2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventTokenProvider'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionFactory'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberGroupIdProvider'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webMvcConfig'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties'
-2024-08-07 11:24:33 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String
-2024-08-07 11:24:33 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'globalExceptionHandler'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'actionController'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'billActionController'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventController'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'authService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'tokenProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionController'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'adminInterceptor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'authenticationExtractor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'taskExecutorBuilder'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'defaultValidator'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Loaded expression factory via original TCCL
-2024-08-07 11:24:33 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
-2024-08-07 11:24:33 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via user class loader
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 11:24:33 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 11:24:33 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 11:24:33 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 11:24:33 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 11:24:33 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'error'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'beanNameViewResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'conventionErrorViewResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'errorAttributes'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'basicErrorController'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor'
-2024-08-07 11:24:33 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
-2024-08-07 11:24:33 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointObjectMapper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'welcomePageHandlerMapping'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcConversionService'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'localeResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'themeResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'flashMapManager'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcValidator'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcContentNegotiationManager'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'requestMappingHandlerMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 -
- s.h.p.ActionController:
- {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String)
-2024-08-07 11:24:33 -
- s.h.p.BillActionController:
- {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest)
- {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest)
- {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long)
-2024-08-07 11:24:33 -
- s.h.p.EventController:
- {GET [/api/events/{eventId}/actions]}: findActions(String)
- {GET [/api/events/{eventId}/members]}: findAllMembers(String)
- {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest)
- {POST [/api/events]}: saveEvent(EventSaveRequest)
- {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest)
- {GET [/api/events/{eventId}]}: findEvent(String)
-2024-08-07 11:24:33 -
- s.h.p.MemberActionController:
- {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest)
- {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String)
- {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String)
- {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long)
-2024-08-07 11:24:33 -
- o.s.b.a.w.s.e.BasicErrorController:
- { [/error]}: error(HttpServletRequest)
- { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
-2024-08-07 11:24:33 - 16 mappings in 'requestMappingHandlerMapping'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcPatternParser'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcUrlPathHelper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcPathMatcher'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewControllerHandlerMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'beanNameHandlerMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - 'beanNameHandlerMapping' {}
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'routerFunctionMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'messageConverters'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'stringHttpMessageConverter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jacksonObjectMapper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'parameterNamesModule'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jsonMixinModule'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jsonMixinModuleEntries'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jsonComponentModule'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jacksonGeoModule'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pageModule'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'resourceHandlerMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:24:33 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]}
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'defaultServletHandlerMapping'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'sortResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'sortCustomizer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pageableResolver'
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pageableCustomizer'
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:33 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'applicationTaskExecutor'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder'
-2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@56aadd88: connectionId=rmi://127.0.0.1 3] closing.
-2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@56aadd88: connectionId=rmi://127.0.0.1 3] closed.
-2024-08-07 11:24:33 - Initializing ExecutorService 'applicationTaskExecutor'
-2024-08-07 11:24:33 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'handlerFunctionAdapter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcUriComponentsContributor'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'handlerExceptionResolver'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:24:33 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcViewResolver'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewNameTranslator'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'defaultViewResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewResolver'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'applicationAvailability'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'beansEndpoint'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'transactionExecutionListeners'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'transactionManager'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'cachesEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthStatusAggregator'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthEndpointGroups'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthContributorRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pingHealthContributor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dbHealthContributor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthEndpoint'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'infoEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'servletWebChildContextFactory'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'managementServletContext'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'conditionsReportEndpoint'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mbeanExporter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'objectNamingStrategy'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mbeanServer'
-2024-08-07 11:24:33 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointObjectNameFactory'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jmxMBeanExporter'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'environmentEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'loggersEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'heapDumpWebEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dumpEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'metricsEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'sbomEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'scheduledTasksEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mappingsEndpoint'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointMediaTypes'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pathMappedEndpoints'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'meterRegistryCloser'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmGcMetrics'
-2024-08-07 11:24:33 - Using SLF4J as the default logging framework
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmMemoryMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmThreadMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'classLoaderMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmInfoMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmCompilationMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'logbackMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'uptimeMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'processorMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'fileDescriptorMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'diskSpaceMetrics'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'startupTimeMetrics'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'taskSchedulerBuilder'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'tomcatMetricsBinder'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observedAspect'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'restClientSsl'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'restClientBuilderConfigurer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observationRestClientCustomizer'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment'
-2024-08-07 11:24:33 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'lifecycleProcessor'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'offsetResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jdbcTemplate'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jdbcClient'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'transactionTemplate'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'multipartResolver'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment'
-2024-08-07 11:24:33 - Exposing 0 endpoints beneath base path '/actuator'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration'
-2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
-2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties'
-2024-08-07 11:24:33 - Registering beans for JMX exposure on startup
-2024-08-07 11:24:33 - Auto-detecting user-defined JMX MBeans
-2024-08-07 11:24:33 - Bean with name 'dataSource' has been autodetected for JMX exposure
-2024-08-07 11:24:33 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
-2024-08-07 11:24:33 - Starting beans in phase -2147483647
-2024-08-07 11:24:33 - Successfully started bean 'springBootLoggingLifecycle'
-2024-08-07 11:24:33 - Starting beans in phase 2147481599
-2024-08-07 11:24:33 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP]
-2024-08-07 11:24:33 - Setting state for [Connector["http-nio-8080"]] to [STARTING]
-2024-08-07 11:24:33 - Starting ProtocolHandler ["http-nio-8080"]
-2024-08-07 11:24:33 - Setting state for [Connector["http-nio-8080"]] to [STARTED]
-2024-08-07 11:24:33 - Tomcat started on port 8080 (http) with context path '/'
-2024-08-07 11:24:33 - Successfully started bean 'webServerStartStop'
-2024-08-07 11:24:33 - Starting beans in phase 2147482623
-2024-08-07 11:24:33 - Successfully started bean 'webServerGracefulShutdown'
-2024-08-07 11:24:33 - Starting beans in phase 2147483647
-2024-08-07 11:24:34 -
-
-
-============================
-CONDITIONS EVALUATION REPORT
-============================
-
-
-Positive matches:
------------------
-
- AopAutoConfiguration matched:
- - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
-
- ApplicationAvailabilityAutoConfiguration#applicationAvailability matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- AuditEventsEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- BeansEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- BeansEndpointAutoConfiguration#beansEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CacheMeterBinderProvidersConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition)
-
- CachesEndpointAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- CachesEndpointAutoConfiguration#cachesEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CompositeMeterRegistryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition)
-
- ConditionsReportEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
- - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration.PooledDataSourceConfiguration matched:
- - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition)
- - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceConfiguration.Hikari matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceHealthContributorAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition)
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition)
-
- DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched:
- - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceInitializationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceJmxConfiguration matched:
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- DataSourceJmxConfiguration.Hikari matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
-
- DataSourcePoolMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition)
-
- DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched:
- - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition)
-
- DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- DiskSpaceHealthContributorAutoConfiguration matched:
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
-
- DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched:
- - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DispatcherServletAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition)
- - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition)
- - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:
- - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
-
- EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- EndpointAutoConfiguration#endpointOperationParameterMapper matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- EnvironmentEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- EnvironmentEndpointAutoConfiguration#environmentEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ErrorMvcAutoConfiguration#basicErrorController matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration#errorAttributes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:
- - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)
- - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:
- - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- GenericCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)
-
- H2ConsoleAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition)
-
- HealthContributorAutoConfiguration#pingHealthContributor matched:
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
-
- HealthEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HealthEndpointConfiguration#healthContributorRegistry matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched:
- - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition)
-
- HealthEndpointConfiguration#healthEndpointGroups matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthHttpCodeStatusMapper matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthStatusAggregator matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HeapDumpWebEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HibernateJpaAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition)
-
- HibernateJpaConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- HttpClientObservationsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- HttpEncodingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition)
-
- HttpEncodingAutoConfiguration#characterEncodingFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HttpExchangesEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HttpMessageConvertersAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition)
-
- HttpMessageConvertersAutoConfiguration#messageConverters matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition)
-
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- InfoEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- InfoEndpointAutoConfiguration#infoEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
-
- JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)
-
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonEndpointAutoConfiguration#endpointObjectMapper matched:
- - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JdbcClientAutoConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JdbcTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- JdbcTemplateConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition)
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- JmxAutoConfiguration#mbeanExporter matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration#mbeanServer matched:
- - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration#objectNamingStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration matched:
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- JmxEndpointAutoConfiguration#endpointObjectNameFactory matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration#jmxMBeanExporter matched:
- - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition)
-
- JpaBaseConfiguration#entityManagerFactory matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#entityManagerFactoryBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#jpaVendorAdapter matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#transactionManager matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.JpaWebConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaRepositoriesAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)
- - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JtaAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition)
- - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition)
-
- JvmMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#classLoaderMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmCompilationMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmGcMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmInfoMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmMemoryMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmThreadMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- LifecycleAutoConfiguration#defaultLifecycleProcessor matched:
- - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- LogFileWebEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- LogbackMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition)
- - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- LogbackMetricsAutoConfiguration#logbackMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- LoggersEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- LoggersEndpointAutoConfiguration#loggersEndpoint matched:
- - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition)
- - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ManagementContextAutoConfiguration.SameManagementContextConfiguration matched:
- - Management Port actual port type (SAME) matched required type (OnManagementPortCondition)
-
- MappingsEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- MappingsEndpointAutoConfiguration.ServletWebConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
-
- MetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition)
-
- MetricsAutoConfiguration#micrometerClock matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MetricsEndpointAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition)
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- MetricsEndpointAutoConfiguration#metricsEndpoint matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MultipartAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)
-
- MultipartAutoConfiguration#multipartConfigElement matched:
- - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MultipartAutoConfiguration#multipartResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- NamedParameterJdbcTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- NoOpCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)
-
- ObservationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition)
-
- ObservationAutoConfiguration#observationRegistry matched:
- - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched:
- - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.ObservedAspectConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched:
- - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.OnlyMetricsConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PersistenceExceptionTranslationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)
-
- PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched:
- - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition)
-
- RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientBuilderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientSsl matched:
- - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientObservationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition)
-
- RestTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition)
-
- RestTemplateAutoConfiguration#restTemplateBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestTemplateObservationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition)
-
- SbomEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- SbomEndpointAutoConfiguration#sbomEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ScheduledTasksEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ScheduledTasksObservabilityAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- ServletEndpointManagementContextConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
-
- ServletManagementContextAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletWebServerFactoryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:
- - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- SimpleCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)
-
- SimpleMetricsExportAutoConfiguration matched:
- - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SimpleMetricsExportAutoConfiguration#simpleConfig matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringApplicationAdminJmxAutoConfiguration matched:
- - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition)
-
- SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration#pageableCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration#sortCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SqlInitializationAutoConfiguration matched:
- - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition)
-
- SslAutoConfiguration#sslBundleRegistry matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- StartupTimeMetricsListenerAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#diskSpaceMetrics matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#fileDescriptorMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#processorMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#uptimeMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition)
-
- TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration matched:
- - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched:
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition)
- - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition)
-
- TaskSchedulingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
-
- TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ThreadDumpEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TomcatMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition)
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
-
- TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched:
- - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
-
- TransactionAutoConfiguration.TransactionTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition)
-
- TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionManagerCustomizationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
-
- TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ValidationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition)
- - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition)
-
- ValidationAutoConfiguration#defaultValidator matched:
- - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ValidationAutoConfiguration#methodValidationPostProcessor matched:
- - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
-
- WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#endpointMediaTypes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#pathMappedEndpoints matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#webEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration#formContentFilter matched:
- - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched:
- - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched:
- - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched:
- - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration#webMvcObservationFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- WebSocketServletAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition)
-
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:
- - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
-
-Negative matches:
------------------
-
- ActiveMQAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
-
- AopAutoConfiguration.ClassProxyingConfiguration:
- Did not match:
- - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- AppOpticsMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition)
-
- ArtemisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- AtlasMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition)
-
- AuditAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition)
- Matched:
- - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition)
-
- AuditEventsEndpointAutoConfiguration#auditEventsEndpoint:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition)
-
- AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator:
- Did not match:
- - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator:
- Did not match:
- - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- AvailabilityProbesAutoConfiguration:
- Did not match:
- - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition)
-
- BatchAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition)
-
- BatchObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition)
-
- BraveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition)
-
- Cache2kCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition)
-
- CacheAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
-
- CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition)
-
- CacheMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition)
-
- CachesEndpointAutoConfiguration#cachesEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CaffeineCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition)
-
- CassandraAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition)
-
- CassandraRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- ClientHttpConnectorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- CloudFoundryActuatorAutoConfiguration:
- Did not match:
- - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition)
-
- CodecsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- CompositeMeterRegistryConfiguration:
- Did not match:
- - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ConnectionFactoryHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- ConnectionPoolMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition)
-
- CouchbaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
-
- CouchbaseHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
-
- DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration:
- Did not match:
- - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition)
-
- DataSourceCheckpointRestoreConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition)
-
- DataSourceConfiguration.Dbcp2:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
-
- DataSourceConfiguration.Generic:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition)
-
- DataSourceConfiguration.OracleUcp:
- Did not match:
- - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition)
-
- DataSourceConfiguration.Tomcat:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition)
-
- DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition)
-
- DatadogMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)
-
- DynatraceMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition)
-
- ElasticMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition)
-
- ElasticsearchClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition)
-
- ElasticsearchDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition)
-
- ElasticsearchReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition)
-
- ElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition)
-
- ElasticsearchRestHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition)
-
- EmbeddedLdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer:
- Did not match:
- - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
-
- EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- FlywayAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
-
- FlywayEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
-
- FreeMarkerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition)
-
- GangliaMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition)
-
- GraphQlAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlQueryByExampleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlQuerydslAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition)
-
- GraphQlRSocketAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlReactiveQueryByExampleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlReactiveQuerydslAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition)
-
- GraphQlWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebFluxSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebMvcSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphiteMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition)
-
- GroovyTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)
-
- GsonAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)
-
- GsonHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)
-
- HazelcastAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastJpaDependencyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HealthEndpointReactiveWebExtensionConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
-
- HealthEndpointWebExtensionConfiguration:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- HibernateMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition)
-
- HttpExchangesAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition)
-
- HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
-
- HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration:
- Did not match:
- - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition)
-
- HttpHandlerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- HumioMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition)
-
- HypermediaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition)
-
- InfinispanCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition)
-
- InfluxDbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
-
- InfluxDbHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
-
- InfluxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition)
-
- InfoContributorAutoConfiguration#buildInfoContributor:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Matched:
- - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#envInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#gitInfoContributor:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Matched:
- - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#javaInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#osInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#processInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition)
-
- IntegrationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)
-
- IntegrationGraphEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition)
-
- JCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)
-
- JdbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition)
-
- JerseyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)
-
- JerseySameManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- JerseyServerMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition)
-
- JerseyWebEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- JettyMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition)
-
- JmsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition)
-
- JmsHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- JmxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition)
-
- JndiConnectionFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
-
- JndiDataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
-
- JndiJtaConfiguration:
- Did not match:
- - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition)
-
- JooqAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)
-
- JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition)
-
- JsonbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition)
-
- JsonbHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition)
-
- KafkaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)
-
- KafkaMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition)
-
- KairosMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition)
-
- LdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)
-
- LdapHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition)
-
- LdapRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
-
- LettuceMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition)
-
- LiquibaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition)
-
- LiquibaseEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition)
-
- Log4J2MetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition)
-
- LogFileWebEndpointAutoConfiguration#logFileWebEndpoint:
- Did not match:
- - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition)
-
- MailHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition)
-
- MailSenderAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition)
-
- MailSenderValidatorAutoConfiguration:
- Did not match:
- - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition)
-
- ManagementContextAutoConfiguration.DifferentManagementContextConfiguration:
- Did not match:
- - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition)
-
- ManagementWebSecurityAutoConfiguration:
- Did not match:
- - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- MappingsEndpointAutoConfiguration.ReactiveWebConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- MessageSourceAutoConfiguration:
- Did not match:
- - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)
-
- MetricsAspectsAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition)
- Matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- MicrometerTracingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- MongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MongoDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MongoHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition)
-
- MongoMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition)
-
- MongoReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- MongoReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MustacheAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)
-
- Neo4jAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- NettyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition)
-
- NewRelicMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition)
-
- NoOpMeterRegistryConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition)
-
- NoopTracerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- OAuth2AuthorizationServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition)
-
- OAuth2AuthorizationServerJwtAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition)
-
- OAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition)
-
- OAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration:
- Did not match:
- - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition)
- - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition)
-
- ObservationAutoConfiguration.MetricsWithTracingConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- ObservationAutoConfiguration.OnlyTracingConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition)
-
- org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition)
-
- OtlpAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition)
-
- OtlpMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition)
-
- ProjectInfoAutoConfiguration#buildProperties:
- Did not match:
- - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)
-
- ProjectInfoAutoConfiguration#gitProperties:
- Did not match:
- - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)
-
- PrometheusExemplarsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PrometheusMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition)
-
- PrometheusSimpleclientExemplarsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PrometheusSimpleclientMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition)
-
- PulsarAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition)
-
- PulsarReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition)
-
- QuartzAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)
-
- QuartzEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)
-
- R2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- R2dbcDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition)
-
- R2dbcInitializationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition)
-
- R2dbcObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition)
-
- R2dbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- R2dbcTransactionManagerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition)
-
- RSocketGraphQlClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- RSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
-
- RSocketRequesterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
-
- RSocketSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition)
-
- RSocketServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition)
-
- RSocketStrategiesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition)
-
- RabbitAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition)
-
- RabbitHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition)
-
- RabbitMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition)
-
- ReactiveCloudFoundryActuatorAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- ReactiveElasticsearchClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition)
-
- ReactiveElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition)
-
- ReactiveHealthEndpointConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveManagementContextAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveManagementWebSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)
-
- ReactiveMultipartAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- ReactiveOAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveOAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)
-
- ReactiveSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveUserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)
-
- ReactiveWebServerFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- ReactorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition)
-
- RedisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)
-
- RedisCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
-
- RedisHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
-
- RedisReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- RedisReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- RedisRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)
-
- RepositoryRestMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)
-
- Saml2RelyingPartyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition)
-
- SbomEndpointAutoConfiguration#sbomEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)
-
- SecurityFilterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)
-
- SecurityRequestMatchersManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition)
-
- SendGridAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)
-
- ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition)
-
- ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedJetty:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedUndertow:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
-
- SessionAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
-
- SessionsEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
-
- ShutdownEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition)
-
- SignalFxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition)
-
- StackdriverMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition)
-
- StartupEndpointAutoConfiguration:
- Did not match:
- - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition)
-
- StatsdMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition)
-
- TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads:
- Did not match:
- - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition)
-
- TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter:
- Did not match:
- - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)
-
- TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition)
-
- TaskSchedulingConfigurations.TaskSchedulerConfiguration:
- Did not match:
- - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)
-
- ThymeleafAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition)
-
- TransactionAutoConfiguration#transactionalOperator:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration.AspectJTransactionManagementConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
-
- UserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)
-
- WavefrontAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition)
-
- WavefrontMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition)
-
- WavefrontTracingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition)
-
- WebClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- WebClientObservationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- WebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- WebFluxEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- WebFluxObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- WebMvcAutoConfiguration#hiddenHttpMethodFilter:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition)
-
- WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping:
- Did not match:
- - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition)
-
- WebServiceTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition)
-
- WebServicesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
-
- WebSessionIdResolverAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition)
-
- WebSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
-
- WebSocketReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition)
-
- WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)
-
- XADataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
-
- ZipkinAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition)
-
-
-Exclusions:
------------
-
- None
-
-
-Unconditional classes:
-----------------------
-
- org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration
-
- org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration
-
- org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration
-
- org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration
-
- org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration
-
- org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration
-
-
-
-2024-08-07 11:24:34 - Started HaengdongApplication in 2.377 seconds (process running for 2.59)
-2024-08-07 11:24:34 - Application availability state LivenessState changed to CORRECT
-2024-08-07 11:24:34 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@6a9cef18: connectionId=rmi://127.0.0.1 4] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@6a9cef18: connectionId=rmi://127.0.0.1 4] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60294]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60293]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4affa994: connectionId=rmi://127.0.0.1 6] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4affa994: connectionId=rmi://127.0.0.1 6] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c5167d8: connectionId=rmi://127.0.0.1 5] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c5167d8: connectionId=rmi://127.0.0.1 5] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@77b10e4c: connectionId=rmi://127.0.0.1 7] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@77b10e4c: connectionId=rmi://127.0.0.1 7] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader.
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c2d2a29: connectionId=rmi://127.0.0.1 8] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c2d2a29: connectionId=rmi://127.0.0.1 8] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@79c4c99b: connectionId=rmi://127.0.0.1 9] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@79c4c99b: connectionId=rmi://127.0.0.1 9] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@504679a4: connectionId=rmi://127.0.0.1 10] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@504679a4: connectionId=rmi://127.0.0.1 10] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader.
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[]
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[]
-2024-08-07 11:24:34 - Fetching JDBC Connection from DataSource
-2024-08-07 11:24:34 - Initializing Spring DispatcherServlet 'dispatcherServlet'
-2024-08-07 11:24:34 - Initializing Servlet 'dispatcherServlet'
-2024-08-07 11:24:34 - Detected StandardServletMultipartResolver
-2024-08-07 11:24:34 - Detected AcceptHeaderLocaleResolver
-2024-08-07 11:24:34 - Detected FixedThemeResolver
-2024-08-07 11:24:34 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@177d7e98
-2024-08-07 11:24:34 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@442545ab
-2024-08-07 11:24:34 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
-2024-08-07 11:24:34 - Completed initialization in 1 ms
-2024-08-07 11:24:34 - Fetching JDBC Connection from DataSource
-2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4f2df720: connectionId=rmi://127.0.0.1 11] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4f2df720: connectionId=rmi://127.0.0.1 11] closed.
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 82
-2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@55f41d6c: connectionId=rmi://127.0.0.1 12] closing.
-2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@55f41d6c: connectionId=rmi://127.0.0.1 12] closed.
-2024-08-07 11:24:54 - RMI TCP Connection(1)-127.0.0.1: (port 60291) connection closed
-2024-08-07 11:24:54 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60292,localport=60291]
-2024-08-07 11:24:54 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60292,localport=60291]
-2024-08-07 11:24:54 - RMI TCP Connection(2)-127.0.0.1: (port 60291) connection closed
-2024-08-07 11:24:54 - RMI TCP Connection(3)-127.0.0.1: (port 60291) connection closed
-2024-08-07 11:24:54 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60293,localport=60291]
-2024-08-07 11:24:55 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60293,localport=60291]
-2024-08-07 11:24:54 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60294,localport=60291]
-2024-08-07 11:24:55 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60294,localport=60291]
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:60295]
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: (port 60291) op = 80
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef
-2024-08-07 11:25:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:25:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:25:17 - RMI TCP Connection(4)-127.0.0.1: (port 60291) connection closed
-2024-08-07 11:25:17 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60295,localport=60291]
-2024-08-07 11:25:17 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60295,localport=60291]
-2024-08-07 11:25:24 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:25:24 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:25:24 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2064990266383354539/conf/jaspic-providers.xml]
-2024-08-07 11:25:24 - POST "/api/events", parameters={}
-2024-08-07 11:25:24 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 11:25:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:25:24 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]]
-2024-08-07 11:25:24 - Found thread-bound EntityManager [SessionImpl(1068519759)] for JPA transaction
-2024-08-07 11:25:24 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 11:25:24 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 11:25:24 - begin
-2024-08-07 11:25:24 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1ed90de]
-2024-08-07 11:25:24 - Found thread-bound EntityManager [SessionImpl(1068519759)] for JPA transaction
-2024-08-07 11:25:24 - Participating in existing transaction
-2024-08-07 11:25:24 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 11:25:24 - Executing identity-insert immediately
-2024-08-07 11:25:24 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 11:25:24 - Initializer list is empty
-2024-08-07 11:25:24 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@772428ee
-2024-08-07 11:25:24 - Extracted JDBC value [0] - [1]
-2024-08-07 11:25:24 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@4ae82410
-2024-08-07 11:25:24 - Initiating transaction commit
-2024-08-07 11:25:24 - Committing JPA transaction on EntityManager [SessionImpl(1068519759)]
-2024-08-07 11:25:24 - committing
-2024-08-07 11:25:24 - Processing flush-time cascades
-2024-08-07 11:25:24 - Dirty checking collections
-2024-08-07 11:25:24 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 11:25:24 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 11:25:24 - Listing entities:
-2024-08-07 11:25:24 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=ee55681c-c4ec-47b1-8d41-b8378c8664d6}
-2024-08-07 11:25:24 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 11:25:24 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 11:25:24 - Writing [EventResponse[eventId=ee55681c-c4ec-47b1-8d41-b8378c8664d6]]
-2024-08-07 11:25:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:25:24 - Completed 200 OK
-2024-08-07 11:25:32 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:25:32 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:25:48 - POST "/api/events", parameters={}
-2024-08-07 11:25:48 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 11:25:48 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:25:48 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]]
-2024-08-07 11:25:48 - Found thread-bound EntityManager [SessionImpl(696510524)] for JPA transaction
-2024-08-07 11:25:48 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 11:25:48 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 11:25:48 - begin
-2024-08-07 11:25:48 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@64f26060]
-2024-08-07 11:25:48 - Found thread-bound EntityManager [SessionImpl(696510524)] for JPA transaction
-2024-08-07 11:25:48 - Participating in existing transaction
-2024-08-07 11:25:48 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 11:25:48 - Executing identity-insert immediately
-2024-08-07 11:25:48 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 11:25:48 - Initializer list is empty
-2024-08-07 11:25:48 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@64a7caf
-2024-08-07 11:25:48 - Extracted JDBC value [0] - [2]
-2024-08-07 11:25:48 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@1b98eae8
-2024-08-07 11:25:48 - Initiating transaction commit
-2024-08-07 11:25:48 - Committing JPA transaction on EntityManager [SessionImpl(696510524)]
-2024-08-07 11:25:48 - committing
-2024-08-07 11:25:48 - Processing flush-time cascades
-2024-08-07 11:25:48 - Dirty checking collections
-2024-08-07 11:25:48 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 11:25:48 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 11:25:48 - Listing entities:
-2024-08-07 11:25:48 - server.haengdong.domain.event.Event{password=1234, name=1234, id=2, token=29bd2b1c-c308-4b41-82ea-8ffa94370559}
-2024-08-07 11:25:48 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 11:25:48 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 11:25:48 - Writing [EventResponse[eventId=29bd2b1c-c308-4b41-82ea-8ffa94370559]]
-2024-08-07 11:25:48 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:25:48 - Completed 200 OK
-2024-08-07 11:26:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:26:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:26:17 - POST "/api/events/29bd2b1c-c308-4b41-82ea-8ffa94370559/member-actions", parameters={}
-2024-08-07 11:26:17 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest)
-2024-08-07 11:26:17 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException()
-2024-08-07 11:26:17 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 11:26:17 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]]
-2024-08-07 11:26:17 - Resolved [server.haengdong.exception.AuthenticationException]
-2024-08-07 11:26:17 - Completed 401 UNAUTHORIZED
-2024-08-07 11:26:32 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:26:32 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:27:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:27:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:27:32 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:27:32 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:28:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:28:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:28:04 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC
-2024-08-07 11:28:04 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 11:24:31 KST 2024
-2024-08-07 11:28:04 - Stopping beans in phase 2147483647
-2024-08-07 11:28:04 - Bean 'applicationTaskExecutor' completed its stop procedure
-2024-08-07 11:28:04 - Stopping beans in phase 2147482623
-2024-08-07 11:28:04 - Bean 'webServerGracefulShutdown' completed its stop procedure
-2024-08-07 11:28:04 - Stopping beans in phase 2147481599
-2024-08-07 11:28:04 - Bean 'webServerStartStop' completed its stop procedure
-2024-08-07 11:28:04 - Stopping beans in phase -2147483647
-2024-08-07 11:28:04 - Bean 'springBootLoggingLifecycle' completed its stop procedure
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain
-2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain
-2024-08-07 11:28:04 - Unregistering JMX-exposed beans on shutdown
-2024-08-07 11:28:04 - Unregistering JMX-exposed beans
-2024-08-07 11:28:04 - Shutting down ExecutorService 'applicationTaskExecutor'
-2024-08-07 11:28:04 - Closing JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 11:28:04 - HHH000031: Closing
-2024-08-07 11:28:04 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2ec2b0ef] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@3bede349]
-2024-08-07 11:28:04 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries
-2024-08-07 11:28:04 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries
-2024-08-07 11:28:04 - HikariPool-1 - Shutdown initiated...
-2024-08-07 11:28:04 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:28:04 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0)
-2024-08-07 11:28:04 - HikariPool-1 - Shutdown completed.
-2024-08-07 11:28:04 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed
-2024-08-07 11:30:45 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
-2024-08-07 11:30:45 - HV000001: Hibernate Validator 8.0.1.Final
-2024-08-07 11:30:45 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 11:30:45 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 11:30:45 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 11:30:45 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 11:30:45 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 11:30:45 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 11:30:45 - Loaded expression factory via original TCCL
-2024-08-07 11:30:45 - Starting HaengdongApplication using Java 17.0.12 with PID 45209 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong)
-2024-08-07 11:30:45 - Running with Spring Boot v3.3.1, Spring v6.1.10
-2024-08-07 11:30:45 - No active profile set, falling back to 1 default profile: "default"
-2024-08-07 11:30:45 - Loading source class server.haengdong.HaengdongApplication
-2024-08-07 11:30:45 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929
-2024-08-07 11:30:45 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
-2024-08-07 11:30:45 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 11:30:45 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
-2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class]
-2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class]
-2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class]
-2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class]
-2024-08-07 11:30:46 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
-2024-08-07 11:30:46 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled.
-2024-08-07 11:30:46 - Scanning for JPA repositories in packages server.haengdong.
-2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 11:30:46 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces.
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'methodValidationPostProcessor'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
-2024-08-07 11:30:46 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 11:30:46 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'transactionAttributeSource'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'transactionInterceptor'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'observationRegistryPostProcessor'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
-2024-08-07 11:30:46 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@446e7065]
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
-2024-08-07 11:30:46 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]
-org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
- at org.apache.tomcat.jni.Library.(Library.java:91)
- at org.apache.tomcat.jni.Library.initialize(Library.java:147)
- at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209)
- at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:138)
- at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'sslBundleRegistry'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'fileWatcher'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'errorPageCustomizer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dispatcherServletRegistration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dispatcherServlet'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'multipartConfigElement'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 11:30:46 - Class not found so assuming code is running on a pre-Java 19 JVM
-java.lang.ClassNotFoundException: java.lang.WrongThreadException
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre19Compat.(Jre19Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:46 - Class not found so assuming code is running on a pre-Java 21 JVM
-java.lang.ClassNotFoundException: java.lang.Thread$Builder
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre21Compat.(Jre21Compat.java:43)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:46 - Class not found so assuming code is running on a pre-Java 22 JVM
-java.lang.ClassNotFoundException: java.text.ListFormat
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre22Compat.(Jre22Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:46 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]]
-2024-08-07 11:30:46 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 11:30:46 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 11:30:46 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
-2024-08-07 11:30:46 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]]
-2024-08-07 11:30:46 - Tomcat initialized with port 8080 (http)
-2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING]
-2024-08-07 11:30:46 - Initializing ProtocolHandler ["http-nio-8080"]
-2024-08-07 11:30:46 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Starting service [Tomcat]
-2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Starting Servlet engine: [Apache Tomcat/10.1.25]
-2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Starting this Loader
-2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:30:46 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
-2024-08-07 11:30:46 - Configured a manager of class [org.apache.catalina.session.StandardManager]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [STARTED]
-2024-08-07 11:30:46 - Initializing Spring embedded WebApplicationContext
-2024-08-07 11:30:46 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
-2024-08-07 11:30:46 - Root WebApplicationContext: initialization completed in 631 ms
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'webMvcObservationFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'observationRegistry'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'propertiesObservationFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'defaultMeterObservationHandler'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'simpleMeterRegistry'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'simpleConfig'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'micrometerClock'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'propertiesMeterFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'h2Console'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dataSource'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'jdbcConnectionDetails'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails'
-2024-08-07 11:30:46 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
-2024-08-07 11:30:46 - HikariPool-1 - configuration:
-2024-08-07 11:30:46 - allowPoolSuspension.............false
-2024-08-07 11:30:46 - autoCommit......................true
-2024-08-07 11:30:46 - catalog.........................none
-2024-08-07 11:30:46 - connectionInitSql...............none
-2024-08-07 11:30:46 - connectionTestQuery.............none
-2024-08-07 11:30:46 - connectionTimeout...............30000
-2024-08-07 11:30:46 - dataSource......................none
-2024-08-07 11:30:46 - dataSourceClassName.............none
-2024-08-07 11:30:46 - dataSourceJNDI..................none
-2024-08-07 11:30:46 - dataSourceProperties............{password=}
-2024-08-07 11:30:46 - driverClassName................."org.h2.Driver"
-2024-08-07 11:30:46 - exceptionOverrideClassName......none
-2024-08-07 11:30:46 - healthCheckProperties...........{}
-2024-08-07 11:30:46 - healthCheckRegistry.............none
-2024-08-07 11:30:46 - idleTimeout.....................600000
-2024-08-07 11:30:46 - initializationFailTimeout.......1
-2024-08-07 11:30:46 - isolateInternalQueries..........false
-2024-08-07 11:30:46 - jdbcUrl.........................jdbc:h2:mem:database
-2024-08-07 11:30:46 - keepaliveTime...................0
-2024-08-07 11:30:46 - leakDetectionThreshold..........0
-2024-08-07 11:30:46 - maxLifetime.....................1800000
-2024-08-07 11:30:46 - maximumPoolSize.................10
-2024-08-07 11:30:46 - metricRegistry..................none
-2024-08-07 11:30:46 - metricsTrackerFactory...........none
-2024-08-07 11:30:46 - minimumIdle.....................10
-2024-08-07 11:30:46 - password........................
-2024-08-07 11:30:46 - poolName........................"HikariPool-1"
-2024-08-07 11:30:46 - readOnly........................false
-2024-08-07 11:30:46 - registerMbeans..................false
-2024-08-07 11:30:46 - scheduledExecutor...............none
-2024-08-07 11:30:46 - schema..........................none
-2024-08-07 11:30:46 - threadFactory...................internal
-2024-08-07 11:30:46 - transactionIsolation............default
-2024-08-07 11:30:46 - username........................"sa"
-2024-08-07 11:30:46 - validationTimeout...............5000
-2024-08-07 11:30:46 - HikariPool-1 - Starting...
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60379]
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:46 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@241af0a4: connectionId=rmi://127.0.0.1 1] closing.
-2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@241af0a4: connectionId=rmi://127.0.0.1 1] closed.
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - HikariPool-1 - Start completed.
-2024-08-07 11:30:46 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletEndpointRegistrar'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletEndpointDiscoverer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'webEndpointPathMapper'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'requestContextFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'formContentFilter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'characterEncodingFilter'
-2024-08-07 11:30:46 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
-2024-08-07 11:30:46 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*]
-2024-08-07 11:30:46 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED]
-2024-08-07 11:30:46 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 11:30:46 - Filter 'requestContextFilter' configured for use
-2024-08-07 11:30:46 - Filter 'webMvcObservationFilter' configured for use
-2024-08-07 11:30:46 - Filter 'characterEncodingFilter' configured for use
-2024-08-07 11:30:46 - Filter 'formContentFilter' configured for use
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [STARTING]
-2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [STARTING_PREP]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [STARTING]
-2024-08-07 11:30:46 - Registered host [localhost]
-2024-08-07 11:30:46 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 11:30:46 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 11:30:46 - Register Context [] for service [StandardService[Tomcat]]
-2024-08-07 11:30:46 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
-2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [STARTED]
-2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [STARTED]
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'entityManagerFactory'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'jpaVendorAdapter'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter'
-2024-08-07 11:30:46 - Creating shared instance of singleton bean 'persistenceManagedTypes'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder'
-2024-08-07 11:30:46 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes'
-2024-08-07 11:30:46 - Building JPA container EntityManagerFactory for persistence unit 'default'
-2024-08-07 11:30:46 - PersistenceUnitInfo [
- name: default
- persistence provider classname: null
- classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
- excludeUnlistedClasses: true
- JTA datasource: null
- Non JTA datasource: HikariDataSource (HikariPool-1)
- Transaction type: RESOURCE_LOCAL
- PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/
- Shared Cache Mode: UNSPECIFIED
- Validation Mode: AUTO
- Jar files URLs []
- Managed classes names [
- server.haengdong.domain.action.Action
- server.haengdong.domain.action.BillAction
- server.haengdong.domain.action.MemberAction
- server.haengdong.domain.event.Event
- server.haengdong.domain.event.EventStep]
- Mapping files names []
- Properties []
-2024-08-07 11:30:46 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator].
-2024-08-07 11:30:46 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator].
-2024-08-07 11:30:46 - HHH000412: Hibernate ORM core version 6.5.2.Final
-2024-08-07 11:30:46 - HHH000206: 'hibernate.properties' not found
-2024-08-07 11:30:46 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0)
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator]
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator]
-2024-08-07 11:30:46 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered
-2024-08-07 11:30:46 - HHH000026: Second-level cache disabled
-2024-08-07 11:30:46 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 11:30:46 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 11:30:46 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 11:30:46 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 11:30:46 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 11:30:46 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 11:30:46 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 11:30:46 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 11:30:46 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 11:30:46 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 11:30:46 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 11:30:46 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 11:30:46 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@42cfd794
-2024-08-07 11:30:46 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@42cfd794
-2024-08-07 11:30:46 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@42cfd794
-2024-08-07 11:30:46 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@43778371
-2024-08-07 11:30:46 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@43778371
-2024-08-07 11:30:46 - Adding type registration image -> org.hibernate.type.BasicTypeReference@71beada8
-2024-08-07 11:30:46 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@17f41739
-2024-08-07 11:30:46 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@17f41739
-2024-08-07 11:30:46 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2b3b1124
-2024-08-07 11:30:46 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@54286339
-2024-08-07 11:30:46 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 11:30:46 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 11:30:46 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 11:30:46 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 11:30:46 - Adding type registration int -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 11:30:46 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 11:30:46 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 11:30:46 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 11:30:46 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 11:30:46 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 11:30:46 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 11:30:46 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 11:30:46 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 11:30:46 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 11:30:46 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 11:30:46 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 11:30:46 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 11:30:46 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@56499781
-2024-08-07 11:30:46 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@56499781
-2024-08-07 11:30:46 - Adding type registration character -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 11:30:46 - Adding type registration char -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 11:30:46 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 11:30:46 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@2a2798a2
-2024-08-07 11:30:46 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 11:30:46 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 11:30:46 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@31f1b268
-2024-08-07 11:30:46 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 11:30:46 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 11:30:46 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 11:30:46 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2833c093
-2024-08-07 11:30:46 - Adding type registration text -> org.hibernate.type.BasicTypeReference@7598d675
-2024-08-07 11:30:46 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 11:30:46 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 11:30:46 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 11:30:46 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 11:30:46 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 11:30:46 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ff074a0
-2024-08-07 11:30:46 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@340fc1aa
-2024-08-07 11:30:46 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@34a33343
-2024-08-07 11:30:46 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@98722ef
-2024-08-07 11:30:46 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 11:30:46 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@fd69983
-2024-08-07 11:30:46 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 11:30:46 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 11:30:46 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec
-2024-08-07 11:30:46 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec
-2024-08-07 11:30:46 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 11:30:46 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 11:30:46 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08
-2024-08-07 11:30:46 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08
-2024-08-07 11:30:46 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84
-2024-08-07 11:30:46 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84
-2024-08-07 11:30:46 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 11:30:46 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 11:30:46 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd
-2024-08-07 11:30:46 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd
-2024-08-07 11:30:46 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@57927bc9
-2024-08-07 11:30:46 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@323efafe
-2024-08-07 11:30:46 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@32dbca45
-2024-08-07 11:30:46 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5
-2024-08-07 11:30:46 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5
-2024-08-07 11:30:46 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@684b26b7
-2024-08-07 11:30:46 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2de7c84a
-2024-08-07 11:30:46 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 11:30:46 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 11:30:46 - Adding type registration time -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 11:30:46 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 11:30:46 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 11:30:46 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 11:30:46 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 11:30:46 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 11:30:46 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 11:30:46 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 11:30:46 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 11:30:46 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 11:30:46 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@4f7ba0af
-2024-08-07 11:30:46 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@4f7ba0af
-2024-08-07 11:30:46 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 11:30:46 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 11:30:46 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 11:30:46 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3f4964f2
-2024-08-07 11:30:46 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@3bf01a01
-2024-08-07 11:30:46 - Adding type registration class -> org.hibernate.type.BasicTypeReference@299cab08
-2024-08-07 11:30:46 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@299cab08
-2024-08-07 11:30:46 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 11:30:46 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 11:30:46 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 11:30:46 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@186f7434
-2024-08-07 11:30:46 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@186f7434
-2024-08-07 11:30:46 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2374452a
-2024-08-07 11:30:46 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2374452a
-2024-08-07 11:30:46 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@6ffc6ea7
-2024-08-07 11:30:46 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@6ffc6ea7
-2024-08-07 11:30:46 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7
-2024-08-07 11:30:46 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7
-2024-08-07 11:30:46 - Adding type registration url -> org.hibernate.type.BasicTypeReference@4ffa078d
-2024-08-07 11:30:46 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4ffa078d
-2024-08-07 11:30:46 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4e26564d
-2024-08-07 11:30:46 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@42238078
-2024-08-07 11:30:46 - Adding type registration object -> org.hibernate.type.JavaObjectType@79445efb
-2024-08-07 11:30:46 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@79445efb
-2024-08-07 11:30:46 - Adding type registration null -> org.hibernate.type.NullType@573870cb
-2024-08-07 11:30:46 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5b88af70
-2024-08-07 11:30:46 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2739ecc0
-2024-08-07 11:30:46 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2932e15f
-2024-08-07 11:30:46 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3d98729a
-2024-08-07 11:30:46 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2375a976
-2024-08-07 11:30:46 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4bc21e34
-2024-08-07 11:30:46 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7544260a
-2024-08-07 11:30:46 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@bb6869a
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] into BootstrapContext; was [null]
-2024-08-07 11:30:46 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43) [was null]
-2024-08-07 11:30:46 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@23708f14] into BootstrapContext; was [null]
-2024-08-07 11:30:46 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@3dfc59c5] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2cff5aa3]
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - No LoadTimeWeaver setup: ignoring JPA class transformer
-2024-08-07 11:30:46 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43]
-2024-08-07 11:30:46 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43]
-2024-08-07 11:30:46 - Database ->
- name : H2
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 11:30:46 - Driver ->
- name : H2 JDBC Driver
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 11:30:46 - JDBC version : 4.2
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224
-2024-08-07 11:30:46 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case
-2024-08-07 11:30:46 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor)
-2024-08-07 11:30:46 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor)
-2024-08-07 11:30:46 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor)
-2024-08-07 11:30:46 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 11:30:46 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 11:30:46 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor)
-2024-08-07 11:30:46 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015)
-2024-08-07 11:30:46 - Adding type registration Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 11:30:46 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 11:30:46 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@71eafb64]
-2024-08-07 11:30:46 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}]
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.action.Action
-2024-08-07 11:30:46 - Import with entity name Action
-2024-08-07 11:30:46 - Bind entity server.haengdong.domain.action.Action on table action
-2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id]
-2024-08-07 11:30:46 - building BasicValue for id
-2024-08-07 11:30:46 - Skipping column re-registration: action.id
-2024-08-07 11:30:46 - Building property id
-2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Building property event
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence]
-2024-08-07 11:30:46 - building BasicValue for sequence
-2024-08-07 11:30:46 - Skipping column re-registration: action.sequence
-2024-08-07 11:30:46 - Building property sequence
-2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.action.BillAction
-2024-08-07 11:30:46 - Import with entity name BillAction
-2024-08-07 11:30:46 - Bind entity server.haengdong.domain.action.BillAction on table bill_action
-2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id]
-2024-08-07 11:30:46 - building BasicValue for id
-2024-08-07 11:30:46 - Skipping column re-registration: bill_action.id
-2024-08-07 11:30:46 - Building property id
-2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Building property action
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property price with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price]
-2024-08-07 11:30:46 - building BasicValue for price
-2024-08-07 11:30:46 - Skipping column re-registration: bill_action.price
-2024-08-07 11:30:46 - Building property price
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property title with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title]
-2024-08-07 11:30:46 - building BasicValue for title
-2024-08-07 11:30:46 - Skipping column re-registration: bill_action.title
-2024-08-07 11:30:46 - Building property title
-2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction
-2024-08-07 11:30:46 - Import with entity name MemberAction
-2024-08-07 11:30:46 - Bind entity server.haengdong.domain.action.MemberAction on table member_action
-2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id]
-2024-08-07 11:30:46 - building BasicValue for id
-2024-08-07 11:30:46 - Skipping column re-registration: member_action.id
-2024-08-07 11:30:46 - Building property id
-2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Building property action
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property memberGroupId with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId]
-2024-08-07 11:30:46 - building BasicValue for memberGroupId
-2024-08-07 11:30:46 - Skipping column re-registration: member_action.member_group_id
-2024-08-07 11:30:46 - Building property memberGroupId
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property memberName with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName]
-2024-08-07 11:30:46 - building BasicValue for memberName
-2024-08-07 11:30:46 - Skipping column re-registration: member_action.member_name
-2024-08-07 11:30:46 - Building property memberName
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property status with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status]
-2024-08-07 11:30:46 - building BasicValue for status
-2024-08-07 11:30:46 - Skipping column re-registration: member_action.status
-2024-08-07 11:30:46 - Building property status
-2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.event.Event
-2024-08-07 11:30:46 - Import with entity name Event
-2024-08-07 11:30:46 - Bind entity server.haengdong.domain.event.Event on table event
-2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id]
-2024-08-07 11:30:46 - building BasicValue for id
-2024-08-07 11:30:46 - Skipping column re-registration: event.id
-2024-08-07 11:30:46 - Building property id
-2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name]
-2024-08-07 11:30:46 - building BasicValue for name
-2024-08-07 11:30:46 - Skipping column re-registration: event.name
-2024-08-07 11:30:46 - Building property name
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property password with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password]
-2024-08-07 11:30:46 - building BasicValue for password
-2024-08-07 11:30:46 - Skipping column re-registration: event.password
-2024-08-07 11:30:46 - Building property password
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property token with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token]
-2024-08-07 11:30:46 - building BasicValue for token
-2024-08-07 11:30:46 - Skipping column re-registration: event.token
-2024-08-07 11:30:46 - Building property token
-2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.event.EventStep
-2024-08-07 11:30:46 - Import with entity name EventStep
-2024-08-07 11:30:46 - Bind entity server.haengdong.domain.event.EventStep on table event_step
-2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id]
-2024-08-07 11:30:46 - building BasicValue for id
-2024-08-07 11:30:46 - Skipping column re-registration: event_step.id
-2024-08-07 11:30:46 - Building property id
-2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn()
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - Building property event
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name]
-2024-08-07 11:30:46 - building BasicValue for name
-2024-08-07 11:30:46 - Skipping column re-registration: event_step.name
-2024-08-07 11:30:46 - Building property name
-2024-08-07 11:30:46 - Binding column: AnnotatedColumn()
-2024-08-07 11:30:46 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence]
-2024-08-07 11:30:46 - building BasicValue for sequence
-2024-08-07 11:30:46 - Skipping column re-registration: event_step.sequence
-2024-08-07 11:30:46 - Building property sequence
-2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for price
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for title
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for memberName
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for status
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for password
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for token
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [action]
-2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action]
-2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action]
-2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [event]
-2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step]
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - Building session factory
-2024-08-07 11:30:46 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 11:30:46 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@61d61b0e, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@3c2188f, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator=
-, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9276564684631348590, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=45209, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9276564684631348590, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@646bf8a6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0}
-2024-08-07 11:30:46 - Session factory constructed with filter configurations : {}
-2024-08-07 11:30:46 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 11:30:46 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 11:30:46 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 11:30:46 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 11:30:46 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 11:30:46 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 11:30:46 - Loaded expression factory via original TCCL
-2024-08-07 11:30:46 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0)
-2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 11:30:46 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@56b48163] under count; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@32121140] under every; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@96c840a] under any; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under sinh; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under cosh; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under tanh; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124] under pi; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2d3768ce] under log; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : length -> character_length
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337] under position; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@79b0956e] under overlay; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@37f627d0] under trim; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@7f9d40b3] under cast; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@ca2a03f] under collate; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3293030b] under extract; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4e3d36c2] under ifnull; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@263e512e] under pad; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@288b8663] under str; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@261099e1] under format; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@7d7c05fa] under timestampadd; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7fa68ff4] under timestampdiff; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : dateadd -> timestampadd
-2024-08-07 11:30:46 - Registering alternate key : datediff -> timestampdiff
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under current_date; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under current_time; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under current_timestamp; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : current date -> current_date
-2024-08-07 11:30:46 - Registering alternate key : current time -> current_time
-2024-08-07 11:30:46 - Registering alternate key : current timestamp -> current_timestamp
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under local_date; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under local_time; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under local_datetime; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under offset_datetime; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : local date -> local_date
-2024-08-07 11:30:46 - Registering alternate key : local time -> local_time
-2024-08-07 11:30:46 - Registering alternate key : local datetime -> local_datetime
-2024-08-07 11:30:46 - Registering alternate key : offset datetime -> offset_datetime
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under instant; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : current_instant -> instant
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@1be12e05] under sql; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@66ab088c] under count; prior registration was org.hibernate.dialect.function.CountFunction@56b48163
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@43312512] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13f7c165] under mod; prior registration was NamedSqmFunctionTemplate(mod)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : day -> day_of_month
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@4e210016
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@2fc40856
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30ca66c5] under trunc; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : truncate -> trunc
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under date_trunc; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : chr -> char
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@38c1b1a7] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73230721] under concat; prior registration was NamedSqmFunctionTemplate(concat)
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : every -> bool_and
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null
-2024-08-07 11:30:46 - Registering alternate key : any -> bool_or
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@10bcbbce] under format; prior registration was org.hibernate.dialect.function.FormatFunction@261099e1
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@31f9f9b3] under listagg; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@62264d4f] under mode; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2bc0603f] under percentile_cont; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4ed19540] under percentile_disc; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under rank; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4eab9aec] under dense_rank; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5a45c218] under percent_rank; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2c6efee3] under cume_dist; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@62525dd3] under array; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@56adbb07] under array_list; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@237ee2e1] under array_agg; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@251e2f4a] under array_position; prior registration was null
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0)
-2024-08-07 11:30:46 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@623ded82] under array_positions; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e826fd4] under array_positions_list; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5f14590c] under array_length; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@1ce8084a] under array_concat; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@222eda8a] under array_prepend; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@3331800f] under array_append; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@76eee0b1] under array_contains; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@2119b989] under array_contains_nullable; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@152d2a58] under array_overlaps; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@50b2ba2c] under array_overlaps_nullable; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d373794] under array_get; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@3a012678] under array_set; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@329efc61] under array_remove; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@2c86b0ea] under array_remove_index; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e481512] under array_slice; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5570dc21] under array_replace; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1477d4e6] under array_trim; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@3d213a2b] under array_fill; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@27691ee8] under array_fill_list; prior registration was null
-2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@5ec3689b] under array_to_string; prior registration was null
-2024-08-07 11:30:46 - abs(NUMERIC arg)
-2024-08-07 11:30:46 - Double acos(NUMERIC arg)
-2024-08-07 11:30:46 - Boolean any(BOOLEAN predicate)
-2024-08-07 11:30:46 - array( ... )
-2024-08-07 11:30:46 - array_agg(arg)
-2024-08-07 11:30:46 - array_append( ... )
-2024-08-07 11:30:46 - array_concat( ... )
-2024-08-07 11:30:46 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 11:30:46 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 11:30:46 - array_fill(OBJECT element, INTEGER elementCount)
-2024-08-07 11:30:46 - array_fill_list(OBJECT element, INTEGER elementCount)
-2024-08-07 11:30:46 - array_get(ARRAY array, INTEGER index)
-2024-08-07 11:30:46 - Integer array_length(ARRAY array)
-2024-08-07 11:30:46 - array_list( ... )
-2024-08-07 11:30:46 - Boolean array_overlaps(ARRAY array0, OBJECT array1)
-2024-08-07 11:30:46 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1)
-2024-08-07 11:30:46 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition])
-2024-08-07 11:30:46 - int[] array_positions(ARRAY array, OBJECT element)
-2024-08-07 11:30:46 - List array_positions_list(ARRAY array, OBJECT element)
-2024-08-07 11:30:46 - array_prepend( ... )
-2024-08-07 11:30:46 - array_remove( ... )
-2024-08-07 11:30:46 - array_remove_index( ... )
-2024-08-07 11:30:46 - array_replace( ... )
-2024-08-07 11:30:46 - array_set( ... )
-2024-08-07 11:30:46 - array_slice(ARRAY array, INTEGER start, INTEGER end)
-2024-08-07 11:30:46 - String array_to_string( ... )
-2024-08-07 11:30:46 - array_trim(ARRAY array, INTEGER elementsToRemove)
-2024-08-07 11:30:46 - Integer ascii(STRING arg)
-2024-08-07 11:30:46 - Double asin(NUMERIC arg)
-2024-08-07 11:30:46 - Double atan(NUMERIC arg)
-2024-08-07 11:30:46 - Double atan2(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 11:30:46 - avg(NUMERIC arg)
-2024-08-07 11:30:46 - bit_and(arg)
-2024-08-07 11:30:46 - Integer bit_length(STRING_OR_CLOB arg)
-2024-08-07 11:30:46 - bit_or(arg)
-2024-08-07 11:30:46 - bitand(arg0, arg1)
-2024-08-07 11:30:46 - bitnot(arg)
-2024-08-07 11:30:46 - bitor(arg0, arg1)
-2024-08-07 11:30:46 - bitxor(arg0, arg1)
-2024-08-07 11:30:46 - Boolean bool_and(BOOLEAN predicate)
-2024-08-07 11:30:46 - Boolean bool_or(BOOLEAN predicate)
-2024-08-07 11:30:46 - cast(arg as Type)
-2024-08-07 11:30:46 - ceiling(NUMERIC arg)
-2024-08-07 11:30:46 - Character char(INTEGER arg)
-2024-08-07 11:30:46 - Integer character_length(STRING_OR_CLOB arg)
-2024-08-07 11:30:46 - Character chr(INTEGER arg)
-2024-08-07 11:30:46 - coalesce(arg0[, arg1[, ...]])
-2024-08-07 11:30:46 - String collate(STRING string as COLLATION collation)
-2024-08-07 11:30:46 - String concat(STRING string0[, STRING string1[, ...]])
-2024-08-07 11:30:46 - Double cos(NUMERIC arg)
-2024-08-07 11:30:46 - Double cosh(NUMERIC arg)
-2024-08-07 11:30:46 - Double cot(NUMERIC arg)
-2024-08-07 11:30:46 - Long count([distinct ]{arg|*})
-2024-08-07 11:30:46 - Double cume_dist([arg0[, ...]])
-2024-08-07 11:30:46 - Date curdate()
-2024-08-07 11:30:46 - Date current date
-2024-08-07 11:30:46 - Time current time
-2024-08-07 11:30:46 - Timestamp current timestamp
-2024-08-07 11:30:46 - Date current_date
-2024-08-07 11:30:46 - Instant current_instant
-2024-08-07 11:30:46 - Time current_time
-2024-08-07 11:30:46 - Timestamp current_timestamp
-2024-08-07 11:30:46 - Time curtime()
-2024-08-07 11:30:46 - date_trunc(STRING field, TEMPORAL datetime)
-2024-08-07 11:30:46 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 11:30:46 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 11:30:46 - Integer day(DATE arg)
-2024-08-07 11:30:46 - Integer day_of_month(DATE arg)
-2024-08-07 11:30:46 - Integer day_of_week(DATE arg)
-2024-08-07 11:30:46 - Integer day_of_year(DATE arg)
-2024-08-07 11:30:46 - String dayname(DATE arg)
-2024-08-07 11:30:46 - Double degrees(NUMERIC arg)
-2024-08-07 11:30:46 - Long dense_rank([arg0[, ...]])
-2024-08-07 11:30:46 - Boolean every(BOOLEAN predicate)
-2024-08-07 11:30:46 - Double exp(NUMERIC arg)
-2024-08-07 11:30:46 - extract(TEMPORAL_UNIT field from TEMPORAL arg)
-2024-08-07 11:30:46 - first_valueANY value
-2024-08-07 11:30:46 - floor(NUMERIC arg)
-2024-08-07 11:30:46 - String format(TEMPORAL datetime as STRING pattern)
-2024-08-07 11:30:46 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 11:30:46 - Integer hour(TIME arg)
-2024-08-07 11:30:46 - ifnull(arg0, arg1)
-2024-08-07 11:30:46 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement)
-2024-08-07 11:30:46 - Instant instant
-2024-08-07 11:30:46 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]])
-2024-08-07 11:30:46 - lagANY value[, INTEGER offset[, ANY default]]
-2024-08-07 11:30:46 - last_valueANY value
-2024-08-07 11:30:46 - leadANY value[, INTEGER offset[, ANY default]]
-2024-08-07 11:30:46 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 11:30:46 - String left(STRING string, INTEGER length)
-2024-08-07 11:30:46 - Integer length(STRING_OR_CLOB arg)
-2024-08-07 11:30:46 - String listagg(STRING arg0, STRING arg1)
-2024-08-07 11:30:46 - Double ln(NUMERIC arg)
-2024-08-07 11:30:46 - LocalDate local date
-2024-08-07 11:30:46 - LocalDateTime local datetime
-2024-08-07 11:30:46 - LocalTime local time
-2024-08-07 11:30:46 - LocalDate local_date
-2024-08-07 11:30:46 - LocalDateTime local_datetime
-2024-08-07 11:30:46 - LocalTime local_time
-2024-08-07 11:30:46 - Time localtime
-2024-08-07 11:30:46 - Timestamp localtimestamp
-2024-08-07 11:30:46 - Integer locate(STRING pattern, STRING string[, INTEGER start])
-2024-08-07 11:30:46 - Double log(NUMERIC base, NUMERIC arg)
-2024-08-07 11:30:46 - Double log10(NUMERIC arg)
-2024-08-07 11:30:46 - String lower(STRING string)
-2024-08-07 11:30:46 - String lpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 11:30:46 - String ltrim(STRING string)
-2024-08-07 11:30:46 - max(COMPARABLE arg)
-2024-08-07 11:30:46 - Double median(NUMERIC arg)
-2024-08-07 11:30:46 - Integer microsecond(TIME arg)
-2024-08-07 11:30:46 - min(COMPARABLE arg)
-2024-08-07 11:30:46 - Integer minute(TIME arg)
-2024-08-07 11:30:46 - Integer mod(INTEGER arg0, INTEGER arg1)
-2024-08-07 11:30:46 - mode()
-2024-08-07 11:30:46 - Integer month(DATE arg)
-2024-08-07 11:30:46 - String monthname(DATE arg)
-2024-08-07 11:30:46 - Timestamp now()
-2024-08-07 11:30:46 - nth_valueANY value, INTEGER nth
-2024-08-07 11:30:46 - nullif(arg0, arg1)
-2024-08-07 11:30:46 - Integer octet_length(STRING_OR_CLOB arg)
-2024-08-07 11:30:46 - OffsetDateTime offset datetime
-2024-08-07 11:30:46 - OffsetDateTime offset_datetime
-2024-08-07 11:30:46 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length])
-2024-08-07 11:30:46 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character])
-2024-08-07 11:30:46 - Double percent_rank([arg0[, ...]])
-2024-08-07 11:30:46 - percentile_cont(NUMERIC arg)
-2024-08-07 11:30:46 - percentile_disc(NUMERIC arg)
-2024-08-07 11:30:46 - Double pi
-2024-08-07 11:30:46 - Integer position(STRING pattern in STRING string)
-2024-08-07 11:30:46 - Double power(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 11:30:46 - Integer quarter(DATE arg)
-2024-08-07 11:30:46 - Double radians(NUMERIC arg)
-2024-08-07 11:30:46 - Double rand([INTEGER seed])
-2024-08-07 11:30:46 - Long rank([arg0[, ...]])
-2024-08-07 11:30:46 - String repeat(STRING string, INTEGER times)
-2024-08-07 11:30:46 - String replace(STRING string, STRING pattern, STRING replacement)
-2024-08-07 11:30:46 - String right(STRING string, INTEGER length)
-2024-08-07 11:30:46 - round(NUMERIC number[, INTEGER places])
-2024-08-07 11:30:46 - Long row_number()
-2024-08-07 11:30:46 - Long rownum()
-2024-08-07 11:30:46 - String rpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 11:30:46 - String rtrim(STRING string)
-2024-08-07 11:30:46 - Integer second(TIME arg)
-2024-08-07 11:30:46 - Integer sign(NUMERIC arg)
-2024-08-07 11:30:46 - Double sin(NUMERIC arg)
-2024-08-07 11:30:46 - Double sinh(NUMERIC arg)
-2024-08-07 11:30:46 - String soundex(arg)
-2024-08-07 11:30:46 - String space(INTEGER arg)
-2024-08-07 11:30:46 - Object sql
-2024-08-07 11:30:46 - Double sqrt(NUMERIC arg)
-2024-08-07 11:30:46 - Double stddev_pop(NUMERIC arg)
-2024-08-07 11:30:46 - Double stddev_samp(NUMERIC arg)
-2024-08-07 11:30:46 - String str(arg)
-2024-08-07 11:30:46 - String substr(STRING string, INTEGER start[, INTEGER length])
-2024-08-07 11:30:46 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length])
-2024-08-07 11:30:46 - sum(arg)
-2024-08-07 11:30:46 - Timestamp sysdate
-2024-08-07 11:30:46 - Double tan(NUMERIC arg)
-2024-08-07 11:30:46 - Double tanh(NUMERIC arg)
-2024-08-07 11:30:46 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 11:30:46 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 11:30:46 - String translate(STRING arg0, STRING arg1, STRING arg2)
-2024-08-07 11:30:46 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1)
-2024-08-07 11:30:46 - trunc( ... )
-2024-08-07 11:30:46 - truncate( ... )
-2024-08-07 11:30:46 - String upper(STRING string)
-2024-08-07 11:30:46 - Double var_pop(NUMERIC arg)
-2024-08-07 11:30:46 - Double var_samp(NUMERIC arg)
-2024-08-07 11:30:46 - Integer week(DATE arg)
-2024-08-07 11:30:46 - Integer year(DATE arg)
-2024-08-07 11:30:46 - Starting QueryInterpretationCache(2048)
-2024-08-07 11:30:46 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 11:30:46 - Configured EntityCopyObserver strategy: disallow
-2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:46 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@5ac4cd01: connectionId=rmi://127.0.0.1 2] closing.
-2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@5ac4cd01: connectionId=rmi://127.0.0.1 2] closed.
-2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action]
-2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action]
-2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name]
-2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event]
-2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event]
-2024-08-07 11:30:47 - Starting post-init callbacks
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action]
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action]
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event]
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event]
-2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator
-2024-08-07 11:30:47 - Created new SQL alias : ba1_0
-2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction]
-2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@45689582] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action]
-2024-08-07 11:30:47 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.BillAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action]
- | +-BasicFetch [server.haengdong.domain.action.BillAction.price]
- | \-BasicFetch [server.haengdong.domain.action.BillAction.title]
-
-2024-08-07 11:30:47 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) {
- primaryTableReference : bill_action as ba1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.action.BillAction
-2024-08-07 11:30:47 - Version select: select id from bill_action where id=?
-2024-08-07 11:30:47 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default)
-2024-08-07 11:30:47 - Update (0): update bill_action set action_id=?,price=?,title=? where id=?
-2024-08-07 11:30:47 - Delete (0): delete from bill_action where id=?
-2024-08-07 11:30:47 - Created new SQL alias : ma1_0
-2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction]
-2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7fba30fe] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action]
-2024-08-07 11:30:47 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.MemberAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName]
- | \-BasicFetch [server.haengdong.domain.action.MemberAction.status]
-
-2024-08-07 11:30:47 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) {
- primaryTableReference : member_action as ma1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.action.MemberAction
-2024-08-07 11:30:47 - Version select: select id from member_action where id=?
-2024-08-07 11:30:47 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default)
-2024-08-07 11:30:47 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=?
-2024-08-07 11:30:47 - Delete (0): delete from member_action where id=?
-2024-08-07 11:30:47 - Created new SQL alias : e1_0
-2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event]
-2024-08-07 11:30:47 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.Event]
- | +-BasicFetch [server.haengdong.domain.event.Event.name]
- | +-BasicFetch [server.haengdong.domain.event.Event.password]
- | \-BasicFetch [server.haengdong.domain.event.Event.token]
-
-2024-08-07 11:30:47 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : server.haengdong.domain.event.Event) {
- primaryTableReference : event as e1_0
- }
- }
- }
-
-2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.event.Event
-2024-08-07 11:30:47 - Version select: select id from event where id=?
-2024-08-07 11:30:47 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default)
-2024-08-07 11:30:47 - Update (0): update event set name=?,password=?,token=? where id=?
-2024-08-07 11:30:47 - Delete (0): delete from event where id=?
-2024-08-07 11:30:47 - Created new SQL alias : a1_0
-2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action]
-2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76ccde41] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event]
-2024-08-07 11:30:47 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.Action]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event]
- | \-BasicFetch [server.haengdong.domain.action.Action.sequence]
-
-2024-08-07 11:30:47 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : server.haengdong.domain.action.Action) {
- primaryTableReference : action as a1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.action.Action
-2024-08-07 11:30:47 - Version select: select id from action where id=?
-2024-08-07 11:30:47 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default)
-2024-08-07 11:30:47 - Update (0): update action set event_id=?,sequence=? where id=?
-2024-08-07 11:30:47 - Delete (0): delete from action where id=?
-2024-08-07 11:30:47 - Created new SQL alias : es1_0
-2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep]
-2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e8eea59] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event]
-2024-08-07 11:30:47 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.EventStep]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event]
- | +-BasicFetch [server.haengdong.domain.event.EventStep.name]
- | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence]
-
-2024-08-07 11:30:47 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) {
- primaryTableReference : event_step as es1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.event.EventStep
-2024-08-07 11:30:47 - Version select: select id from event_step where id=?
-2024-08-07 11:30:47 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default)
-2024-08-07 11:30:47 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=?
-2024-08-07 11:30:47 - Delete (0): delete from event_step where id=?
-2024-08-07 11:30:47 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
-2024-08-07 11:30:47 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@76d220eb]
-2024-08-07 11:30:47 - Checking 0 named HQL queries
-2024-08-07 11:30:47 - Checking 0 named SQL queries
-2024-08-07 11:30:47 -
- drop table if exists action cascade
-2024-08-07 11:30:47 -
- drop table if exists bill_action cascade
-2024-08-07 11:30:47 -
- drop table if exists event cascade
-2024-08-07 11:30:47 -
- drop table if exists event_step cascade
-2024-08-07 11:30:47 -
- drop table if exists member_action cascade
-2024-08-07 11:30:47 -
- create table action (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- primary key (id)
- )
-2024-08-07 11:30:47 -
- create table bill_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- price bigint,
- title varchar(30),
- primary key (id)
- )
-2024-08-07 11:30:47 -
- create table event (
- id bigint generated by default as identity,
- name varchar(255),
- password varchar(255),
- token varchar(255),
- primary key (id)
- )
-2024-08-07 11:30:47 -
- create table event_step (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- name varchar(255),
- primary key (id)
- )
-2024-08-07 11:30:47 -
- create table member_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- member_group_id bigint,
- member_name varchar(255),
- status enum ('IN','OUT'),
- primary key (id)
- )
-2024-08-07 11:30:47 -
- alter table if exists action
- add constraint FKgf0qmub9va1xbe44nehny31yw
- foreign key (event_id)
- references event
-2024-08-07 11:30:47 -
- alter table if exists bill_action
- add constraint FK54tx517tp0ry6453olkply4us
- foreign key (action_id)
- references action
-2024-08-07 11:30:47 -
- alter table if exists event_step
- add constraint FKe3rkib91cvl0x5w9wqkshmn81
- foreign key (event_id)
- references event
-2024-08-07 11:30:47 -
- alter table if exists member_action
- add constraint FK5jna51dn8fs2ir52l4uwn517u
- foreign key (action_id)
- references action
-2024-08-07 11:30:47 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@77feca04
-2024-08-07 11:30:47 - Registering SessionFactory: 8b58fbb8-39d5-4618-9efd-2abf7c341d29 ()
-2024-08-07 11:30:47 - Not binding SessionFactory to JNDI, no JNDI name configured
-2024-08-07 11:30:47 - Instantiated SessionFactory
-2024-08-07 11:30:47 - Initialized JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'haengdongApplication'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'actionService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'billActionRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#2'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpaMappingContext'
-2024-08-07 11:30:47 - Initializing JpaMetamodelMappingContext…
-2024-08-07 11:30:47 - Finished initializing JpaMetamodelMappingContext
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Statistics initialized [enabled=false]
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'repositoryTagsProvider'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider'
-2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository…
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Looking up named query BillAction.findByAction_Event
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query BillAction.findByAction_Event
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Looking up named query BillAction.findByAction_Id
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query BillAction.findByAction_Id
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Looking up named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository.
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#1'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0'
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository…
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Hibernate is in classpath; If applicable, HQL parser will be used.
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.findAllByEvent.count
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:30:47 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - HQL : select distinct m.memberName
-from MemberAction m
-where m.action.event = :event
-
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:30:47 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select(distinct)]
- -> [selection]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- <- [selection]
- <- [select(distinct)]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 11:30:47 - Looking up named query MemberAction.findByAction
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.findByAction
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Looking up named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Looking up named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.event = :event
-
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:30:47 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.sequence >= :sequence
-
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence)
-2024-08-07 11:30:47 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [GREATER_THAN_OR_EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence`
- :sequence
- <- [GREATER_THAN_OR_EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository.
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#3'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0'
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.event.EventRepository…
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Looking up named query Event.findByToken
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query Event.findByToken
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository.
-2024-08-07 11:30:47 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'billActionService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'actionRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#0'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0'
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.action.ActionRepository…
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query Action.findLastByEvent.count
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - HQL : SELECT a
-FROM Action a
-WHERE a.event = :event
-ORDER BY a.sequence DESC
-LIMIT 1
-
-2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 11:30:47 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.Action(a)`
- <- [root] - `server.haengdong.domain.action.Action(a)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.Action(a)`
- <- [root] - `server.haengdong.domain.action.Action(a)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.Action(a).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 11:30:47 - Looking up named query Action.findByIdAndEvent
-2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 11:30:47 - Did not find named query Action.findByIdAndEvent
-2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository.
-2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventTokenProvider'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionFactory'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberGroupIdProvider'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webMvcConfig'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties'
-2024-08-07 11:30:47 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String
-2024-08-07 11:30:47 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'globalExceptionHandler'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'actionController'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'billActionController'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventController'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'authService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'tokenProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionController'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'adminInterceptor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'authenticationExtractor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'taskExecutorBuilder'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'defaultValidator'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Loaded expression factory via original TCCL
-2024-08-07 11:30:47 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
-2024-08-07 11:30:47 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
-2024-08-07 11:30:47 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 11:30:47 - Trying to load META-INF/validation.xml via user class loader
-2024-08-07 11:30:47 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 11:30:47 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 11:30:47 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 11:30:47 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 11:30:47 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 11:30:47 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 11:30:47 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'error'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'beanNameViewResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'conventionErrorViewResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'errorAttributes'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'basicErrorController'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor'
-2024-08-07 11:30:47 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
-2024-08-07 11:30:47 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointObjectMapper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'welcomePageHandlerMapping'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcConversionService'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:47 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@108d5a75: connectionId=rmi://127.0.0.1 3] closing.
-2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@108d5a75: connectionId=rmi://127.0.0.1 3] closed.
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'localeResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'themeResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'flashMapManager'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcValidator'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcContentNegotiationManager'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'requestMappingHandlerMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 -
- s.h.p.ActionController:
- {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String)
-2024-08-07 11:30:47 -
- s.h.p.BillActionController:
- {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest)
- {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest)
- {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long)
-2024-08-07 11:30:47 -
- s.h.p.EventController:
- {GET [/api/events/{eventId}/actions]}: findActions(String)
- {GET [/api/events/{eventId}/members]}: findAllMembers(String)
- {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest)
- {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest)
- {POST [/api/events]}: saveEvent(EventSaveRequest)
- {GET [/api/events/{eventId}]}: findEvent(String)
-2024-08-07 11:30:47 -
- s.h.p.MemberActionController:
- {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest)
- {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String)
- {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String)
- {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long)
-2024-08-07 11:30:47 -
- o.s.b.a.w.s.e.BasicErrorController:
- { [/error]}: error(HttpServletRequest)
- { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
-2024-08-07 11:30:47 - 16 mappings in 'requestMappingHandlerMapping'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcPatternParser'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcUrlPathHelper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcPathMatcher'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewControllerHandlerMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'beanNameHandlerMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - 'beanNameHandlerMapping' {}
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'routerFunctionMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'messageConverters'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'stringHttpMessageConverter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jacksonObjectMapper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'parameterNamesModule'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jsonMixinModule'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jsonMixinModuleEntries'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jsonComponentModule'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jacksonGeoModule'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pageModule'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'resourceHandlerMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 11:30:47 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]}
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'defaultServletHandlerMapping'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'sortResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'sortCustomizer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pageableResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pageableCustomizer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'applicationTaskExecutor'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder'
-2024-08-07 11:30:47 - Initializing ExecutorService 'applicationTaskExecutor'
-2024-08-07 11:30:47 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'handlerFunctionAdapter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcUriComponentsContributor'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'handlerExceptionResolver'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:30:47 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcViewResolver'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewNameTranslator'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'defaultViewResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewResolver'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'applicationAvailability'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'beansEndpoint'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'transactionExecutionListeners'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'transactionManager'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'cachesEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthStatusAggregator'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthEndpointGroups'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthContributorRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pingHealthContributor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dbHealthContributor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthEndpoint'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'infoEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'servletWebChildContextFactory'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'managementServletContext'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'conditionsReportEndpoint'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mbeanExporter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'objectNamingStrategy'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mbeanServer'
-2024-08-07 11:30:47 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointObjectNameFactory'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jmxMBeanExporter'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'environmentEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'loggersEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'heapDumpWebEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dumpEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'metricsEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'sbomEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'scheduledTasksEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mappingsEndpoint'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointMediaTypes'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pathMappedEndpoints'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'meterRegistryCloser'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmGcMetrics'
-2024-08-07 11:30:47 - Using SLF4J as the default logging framework
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmMemoryMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmThreadMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'classLoaderMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmInfoMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmCompilationMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'logbackMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'uptimeMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'processorMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'fileDescriptorMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'diskSpaceMetrics'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'startupTimeMetrics'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'taskSchedulerBuilder'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'tomcatMetricsBinder'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observedAspect'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'restClientSsl'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'restClientBuilderConfigurer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observationRestClientCustomizer'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment'
-2024-08-07 11:30:47 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'lifecycleProcessor'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'offsetResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jdbcTemplate'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jdbcClient'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'transactionTemplate'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'multipartResolver'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment'
-2024-08-07 11:30:47 - Exposing 0 endpoints beneath base path '/actuator'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration'
-2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
-2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties'
-2024-08-07 11:30:47 - Registering beans for JMX exposure on startup
-2024-08-07 11:30:47 - Auto-detecting user-defined JMX MBeans
-2024-08-07 11:30:47 - Bean with name 'dataSource' has been autodetected for JMX exposure
-2024-08-07 11:30:47 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
-2024-08-07 11:30:47 - Starting beans in phase -2147483647
-2024-08-07 11:30:47 - Successfully started bean 'springBootLoggingLifecycle'
-2024-08-07 11:30:47 - Starting beans in phase 2147481599
-2024-08-07 11:30:47 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP]
-2024-08-07 11:30:47 - Setting state for [Connector["http-nio-8080"]] to [STARTING]
-2024-08-07 11:30:47 - Starting ProtocolHandler ["http-nio-8080"]
-2024-08-07 11:30:47 - Setting state for [Connector["http-nio-8080"]] to [STARTED]
-2024-08-07 11:30:47 - Tomcat started on port 8080 (http) with context path '/'
-2024-08-07 11:30:47 - Successfully started bean 'webServerStartStop'
-2024-08-07 11:30:47 - Starting beans in phase 2147482623
-2024-08-07 11:30:47 - Successfully started bean 'webServerGracefulShutdown'
-2024-08-07 11:30:47 - Starting beans in phase 2147483647
-2024-08-07 11:30:47 -
-
-
-============================
-CONDITIONS EVALUATION REPORT
-============================
-
-
-Positive matches:
------------------
-
- AopAutoConfiguration matched:
- - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
-
- ApplicationAvailabilityAutoConfiguration#applicationAvailability matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- AuditEventsEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- BeansEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- BeansEndpointAutoConfiguration#beansEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CacheMeterBinderProvidersConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition)
-
- CachesEndpointAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- CachesEndpointAutoConfiguration#cachesEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CompositeMeterRegistryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition)
-
- ConditionsReportEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
- - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration.PooledDataSourceConfiguration matched:
- - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition)
- - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceConfiguration.Hikari matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceHealthContributorAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition)
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition)
-
- DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched:
- - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceInitializationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceJmxConfiguration matched:
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- DataSourceJmxConfiguration.Hikari matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
-
- DataSourcePoolMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition)
-
- DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched:
- - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition)
-
- DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- DiskSpaceHealthContributorAutoConfiguration matched:
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
-
- DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched:
- - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DispatcherServletAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition)
- - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition)
- - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:
- - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
-
- EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- EndpointAutoConfiguration#endpointOperationParameterMapper matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- EnvironmentEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- EnvironmentEndpointAutoConfiguration#environmentEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ErrorMvcAutoConfiguration#basicErrorController matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration#errorAttributes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:
- - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)
- - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:
- - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- GenericCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)
-
- H2ConsoleAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition)
-
- HealthContributorAutoConfiguration#pingHealthContributor matched:
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
-
- HealthEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HealthEndpointConfiguration#healthContributorRegistry matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched:
- - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition)
-
- HealthEndpointConfiguration#healthEndpointGroups matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthHttpCodeStatusMapper matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthStatusAggregator matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HeapDumpWebEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HibernateJpaAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition)
-
- HibernateJpaConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- HttpClientObservationsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- HttpEncodingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition)
-
- HttpEncodingAutoConfiguration#characterEncodingFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HttpExchangesEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HttpMessageConvertersAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition)
-
- HttpMessageConvertersAutoConfiguration#messageConverters matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition)
-
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- InfoEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- InfoEndpointAutoConfiguration#infoEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
-
- JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)
-
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonEndpointAutoConfiguration#endpointObjectMapper matched:
- - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JdbcClientAutoConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JdbcTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- JdbcTemplateConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition)
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- JmxAutoConfiguration#mbeanExporter matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration#mbeanServer matched:
- - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration#objectNamingStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration matched:
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- JmxEndpointAutoConfiguration#endpointObjectNameFactory matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration#jmxMBeanExporter matched:
- - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition)
-
- JpaBaseConfiguration#entityManagerFactory matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#entityManagerFactoryBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#jpaVendorAdapter matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#transactionManager matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.JpaWebConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaRepositoriesAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)
- - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JtaAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition)
- - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition)
-
- JvmMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#classLoaderMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmCompilationMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmGcMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmInfoMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmMemoryMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmThreadMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- LifecycleAutoConfiguration#defaultLifecycleProcessor matched:
- - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- LogFileWebEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition)
-
- LogbackMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition)
- - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- LogbackMetricsAutoConfiguration#logbackMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- LoggersEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- LoggersEndpointAutoConfiguration#loggersEndpoint matched:
- - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition)
- - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ManagementContextAutoConfiguration.SameManagementContextConfiguration matched:
- - Management Port actual port type (SAME) matched required type (OnManagementPortCondition)
-
- MappingsEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- MappingsEndpointAutoConfiguration.ServletWebConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
-
- MetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition)
-
- MetricsAutoConfiguration#micrometerClock matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MetricsEndpointAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition)
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- MetricsEndpointAutoConfiguration#metricsEndpoint matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MultipartAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)
-
- MultipartAutoConfiguration#multipartConfigElement matched:
- - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MultipartAutoConfiguration#multipartResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- NamedParameterJdbcTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- NoOpCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)
-
- ObservationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition)
-
- ObservationAutoConfiguration#observationRegistry matched:
- - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched:
- - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.ObservedAspectConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched:
- - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.OnlyMetricsConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PersistenceExceptionTranslationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)
-
- PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched:
- - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition)
-
- RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientBuilderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientSsl matched:
- - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientObservationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition)
-
- RestTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition)
-
- RestTemplateAutoConfiguration#restTemplateBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestTemplateObservationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition)
-
- SbomEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- SbomEndpointAutoConfiguration#sbomEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ScheduledTasksEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ScheduledTasksObservabilityAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- ServletEndpointManagementContextConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
-
- ServletManagementContextAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletWebServerFactoryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:
- - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- SimpleCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)
-
- SimpleMetricsExportAutoConfiguration matched:
- - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SimpleMetricsExportAutoConfiguration#simpleConfig matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringApplicationAdminJmxAutoConfiguration matched:
- - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition)
-
- SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration#pageableCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration#sortCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SqlInitializationAutoConfiguration matched:
- - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition)
-
- SslAutoConfiguration#sslBundleRegistry matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- StartupTimeMetricsListenerAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#diskSpaceMetrics matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#fileDescriptorMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#processorMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#uptimeMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition)
-
- TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration matched:
- - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched:
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition)
- - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition)
-
- TaskSchedulingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
-
- TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ThreadDumpEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TomcatMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition)
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
-
- TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched:
- - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
-
- TransactionAutoConfiguration.TransactionTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition)
-
- TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionManagerCustomizationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
-
- TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ValidationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition)
- - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition)
-
- ValidationAutoConfiguration#defaultValidator matched:
- - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ValidationAutoConfiguration#methodValidationPostProcessor matched:
- - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
-
- WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#endpointMediaTypes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#pathMappedEndpoints matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#webEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration#formContentFilter matched:
- - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched:
- - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched:
- - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched:
- - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration#webMvcObservationFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- WebSocketServletAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition)
-
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:
- - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
-
-Negative matches:
------------------
-
- ActiveMQAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
-
- AopAutoConfiguration.ClassProxyingConfiguration:
- Did not match:
- - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- AppOpticsMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition)
-
- ArtemisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- AtlasMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition)
-
- AuditAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition)
- Matched:
- - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition)
-
- AuditEventsEndpointAutoConfiguration#auditEventsEndpoint:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition)
-
- AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator:
- Did not match:
- - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator:
- Did not match:
- - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- AvailabilityProbesAutoConfiguration:
- Did not match:
- - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition)
-
- BatchAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition)
-
- BatchObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition)
-
- BraveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition)
-
- Cache2kCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition)
-
- CacheAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
-
- CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition)
-
- CacheMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition)
-
- CachesEndpointAutoConfiguration#cachesEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CaffeineCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition)
-
- CassandraAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition)
-
- CassandraRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- ClientHttpConnectorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- CloudFoundryActuatorAutoConfiguration:
- Did not match:
- - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition)
-
- CodecsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- CompositeMeterRegistryConfiguration:
- Did not match:
- - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ConnectionFactoryHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- ConnectionPoolMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition)
-
- CouchbaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
-
- CouchbaseHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
-
- DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration:
- Did not match:
- - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition)
-
- DataSourceCheckpointRestoreConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition)
-
- DataSourceConfiguration.Dbcp2:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
-
- DataSourceConfiguration.Generic:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition)
-
- DataSourceConfiguration.OracleUcp:
- Did not match:
- - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition)
-
- DataSourceConfiguration.Tomcat:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition)
-
- DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition)
-
- DatadogMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)
-
- DynatraceMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition)
-
- ElasticMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition)
-
- ElasticsearchClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition)
-
- ElasticsearchDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition)
-
- ElasticsearchReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition)
-
- ElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition)
-
- ElasticsearchRestHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition)
-
- EmbeddedLdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer:
- Did not match:
- - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
-
- EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- FlywayAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
-
- FlywayEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
-
- FreeMarkerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition)
-
- GangliaMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition)
-
- GraphQlAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlQueryByExampleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlQuerydslAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition)
-
- GraphQlRSocketAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlReactiveQueryByExampleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlReactiveQuerydslAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition)
-
- GraphQlWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebFluxSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebMvcSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphiteMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition)
-
- GroovyTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)
-
- GsonAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)
-
- GsonHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)
-
- HazelcastAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastJpaDependencyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HealthEndpointReactiveWebExtensionConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
-
- HealthEndpointWebExtensionConfiguration:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- HibernateMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition)
-
- HttpExchangesAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition)
-
- HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
-
- HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration:
- Did not match:
- - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition)
-
- HttpHandlerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- HumioMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition)
-
- HypermediaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition)
-
- InfinispanCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition)
-
- InfluxDbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
-
- InfluxDbHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
-
- InfluxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition)
-
- InfoContributorAutoConfiguration#buildInfoContributor:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Matched:
- - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#envInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#gitInfoContributor:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Matched:
- - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#javaInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#osInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#processInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition)
-
- IntegrationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)
-
- IntegrationGraphEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition)
-
- JCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)
-
- JdbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition)
-
- JerseyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)
-
- JerseySameManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- JerseyServerMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition)
-
- JerseyWebEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- JettyMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition)
-
- JmsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition)
-
- JmsHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- JmxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition)
-
- JndiConnectionFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
-
- JndiDataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
-
- JndiJtaConfiguration:
- Did not match:
- - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition)
-
- JooqAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)
-
- JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition)
-
- JsonbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition)
-
- JsonbHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition)
-
- KafkaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)
-
- KafkaMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition)
-
- KairosMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition)
-
- LdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)
-
- LdapHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition)
-
- LdapRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
-
- LettuceMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition)
-
- LiquibaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition)
-
- LiquibaseEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition)
-
- Log4J2MetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition)
-
- LogFileWebEndpointAutoConfiguration#logFileWebEndpoint:
- Did not match:
- - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition)
-
- MailHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition)
-
- MailSenderAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition)
-
- MailSenderValidatorAutoConfiguration:
- Did not match:
- - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition)
-
- ManagementContextAutoConfiguration.DifferentManagementContextConfiguration:
- Did not match:
- - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition)
-
- ManagementWebSecurityAutoConfiguration:
- Did not match:
- - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- MappingsEndpointAutoConfiguration.ReactiveWebConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- MessageSourceAutoConfiguration:
- Did not match:
- - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)
-
- MetricsAspectsAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition)
- Matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- MicrometerTracingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- MongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MongoDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MongoHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition)
-
- MongoMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition)
-
- MongoReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- MongoReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MustacheAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)
-
- Neo4jAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- NettyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition)
-
- NewRelicMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition)
-
- NoOpMeterRegistryConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition)
-
- NoopTracerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- OAuth2AuthorizationServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition)
-
- OAuth2AuthorizationServerJwtAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition)
-
- OAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition)
-
- OAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration:
- Did not match:
- - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition)
- - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition)
-
- ObservationAutoConfiguration.MetricsWithTracingConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- ObservationAutoConfiguration.OnlyTracingConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition)
-
- org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition)
-
- OtlpAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition)
-
- OtlpMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition)
-
- ProjectInfoAutoConfiguration#buildProperties:
- Did not match:
- - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)
-
- ProjectInfoAutoConfiguration#gitProperties:
- Did not match:
- - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)
-
- PrometheusExemplarsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PrometheusMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition)
-
- PrometheusSimpleclientExemplarsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PrometheusSimpleclientMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition)
-
- PulsarAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition)
-
- PulsarReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition)
-
- QuartzAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)
-
- QuartzEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)
-
- R2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- R2dbcDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition)
-
- R2dbcInitializationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition)
-
- R2dbcObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition)
-
- R2dbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- R2dbcTransactionManagerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition)
-
- RSocketGraphQlClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- RSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
-
- RSocketRequesterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
-
- RSocketSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition)
-
- RSocketServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition)
-
- RSocketStrategiesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition)
-
- RabbitAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition)
-
- RabbitHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition)
-
- RabbitMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition)
-
- ReactiveCloudFoundryActuatorAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- ReactiveElasticsearchClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition)
-
- ReactiveElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition)
-
- ReactiveHealthEndpointConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveManagementContextAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveManagementWebSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)
-
- ReactiveMultipartAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- ReactiveOAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveOAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)
-
- ReactiveSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveUserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)
-
- ReactiveWebServerFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- ReactorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition)
-
- RedisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)
-
- RedisCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
-
- RedisHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
-
- RedisReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- RedisReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- RedisRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)
-
- RepositoryRestMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)
-
- Saml2RelyingPartyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition)
-
- SbomEndpointAutoConfiguration#sbomEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)
-
- SecurityFilterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)
-
- SecurityRequestMatchersManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition)
-
- SendGridAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)
-
- ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition)
-
- ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedJetty:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedUndertow:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
-
- SessionAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
-
- SessionsEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
-
- ShutdownEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition)
-
- SignalFxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition)
-
- StackdriverMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition)
-
- StartupEndpointAutoConfiguration:
- Did not match:
- - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition)
-
- StatsdMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition)
-
- TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads:
- Did not match:
- - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition)
-
- TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter:
- Did not match:
- - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)
-
- TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition)
-
- TaskSchedulingConfigurations.TaskSchedulerConfiguration:
- Did not match:
- - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)
-
- ThymeleafAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition)
-
- TransactionAutoConfiguration#transactionalOperator:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration.AspectJTransactionManagementConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
-
- UserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)
-
- WavefrontAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition)
-
- WavefrontMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition)
-
- WavefrontTracingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition)
-
- WebClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- WebClientObservationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- WebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- WebFluxEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- WebFluxObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- WebMvcAutoConfiguration#hiddenHttpMethodFilter:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition)
-
- WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping:
- Did not match:
- - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition)
-
- WebServiceTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition)
-
- WebServicesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
-
- WebSessionIdResolverAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition)
-
- WebSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
-
- WebSocketReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition)
-
- WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)
-
- XADataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
-
- ZipkinAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition)
-
-
-Exclusions:
------------
-
- None
-
-
-Unconditional classes:
-----------------------
-
- org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration
-
- org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration
-
- org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration
-
- org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration
-
- org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration
-
- org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration
-
-
-
-2024-08-07 11:30:47 - Started HaengdongApplication in 2.224 seconds (process running for 2.452)
-2024-08-07 11:30:47 - Application availability state LivenessState changed to CORRECT
-2024-08-07 11:30:47 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:47 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@617b62e2: connectionId=rmi://127.0.0.1 4] closing.
-2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@617b62e2: connectionId=rmi://127.0.0.1 4] closed.
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60381]
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60380]
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@28699749: connectionId=rmi://127.0.0.1 6] closing.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@28699749: connectionId=rmi://127.0.0.1 6] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@c202951: connectionId=rmi://127.0.0.1 5] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@c202951: connectionId=rmi://127.0.0.1 5] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@df26538: connectionId=rmi://127.0.0.1 7] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@df26538: connectionId=rmi://127.0.0.1 7] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader.
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@810ddcb: connectionId=rmi://127.0.0.1 8] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@810ddcb: connectionId=rmi://127.0.0.1 8] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 82
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7d41ca7b: connectionId=rmi://127.0.0.1 10] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7d41ca7b: connectionId=rmi://127.0.0.1 10] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@559a7b02: connectionId=rmi://127.0.0.1 9] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@559a7b02: connectionId=rmi://127.0.0.1 9] closed.
-2024-08-07 11:30:48 - Fetching JDBC Connection from DataSource
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - Fetching JDBC Connection from DataSource
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader.
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = ""
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[]
-2024-08-07 11:30:48 - Initializing Spring DispatcherServlet 'dispatcherServlet'
-2024-08-07 11:30:48 - Initializing Servlet 'dispatcherServlet'
-2024-08-07 11:30:48 - Detected StandardServletMultipartResolver
-2024-08-07 11:30:48 - Detected AcceptHeaderLocaleResolver
-2024-08-07 11:30:48 - Detected FixedThemeResolver
-2024-08-07 11:30:48 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@a6017f9
-2024-08-07 11:30:48 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@6c8a806c
-2024-08-07 11:30:48 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
-2024-08-07 11:30:48 - Completed initialization in 1 ms
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7e63fd2e: connectionId=rmi://127.0.0.1 11] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7e63fd2e: connectionId=rmi://127.0.0.1 11] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@65c367de: connectionId=rmi://127.0.0.1 12] closing.
-2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@65c367de: connectionId=rmi://127.0.0.1 12] closed.
-2024-08-07 11:30:48 - RMI TCP Connection(1)-127.0.0.1: (port 60378) connection closed
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) connection closed
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) connection closed
-2024-08-07 11:30:48 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60379,localport=60378]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60380,localport=60378]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60381,localport=60378]
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:60382]
-2024-08-07 11:30:48 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60379,localport=60378]
-2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60381,localport=60378]
-2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60380,localport=60378]
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: (port 60378) op = 80
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130
-2024-08-07 11:30:55 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:30:55 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 11:30:55 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9276564684631348590/conf/jaspic-providers.xml]
-2024-08-07 11:30:55 - POST "/api/events", parameters={}
-2024-08-07 11:30:55 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 11:30:55 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:30:55 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]]
-2024-08-07 11:30:55 - Found thread-bound EntityManager [SessionImpl(1038802823)] for JPA transaction
-2024-08-07 11:30:55 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 11:30:55 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 11:30:55 - begin
-2024-08-07 11:30:55 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@614f7099]
-2024-08-07 11:30:55 - Found thread-bound EntityManager [SessionImpl(1038802823)] for JPA transaction
-2024-08-07 11:30:55 - Participating in existing transaction
-2024-08-07 11:30:55 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 11:30:55 - Executing identity-insert immediately
-2024-08-07 11:30:56 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 11:30:56 - Initializer list is empty
-2024-08-07 11:30:56 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6a31ad31
-2024-08-07 11:30:56 - Extracted JDBC value [0] - [1]
-2024-08-07 11:30:56 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@14f00044
-2024-08-07 11:30:56 - Initiating transaction commit
-2024-08-07 11:30:56 - Committing JPA transaction on EntityManager [SessionImpl(1038802823)]
-2024-08-07 11:30:56 - committing
-2024-08-07 11:30:56 - Processing flush-time cascades
-2024-08-07 11:30:56 - Dirty checking collections
-2024-08-07 11:30:56 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 11:30:56 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 11:30:56 - Listing entities:
-2024-08-07 11:30:56 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9}
-2024-08-07 11:30:56 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 11:30:56 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 11:30:56 - Writing [EventResponse[eventId=96ab0f71-6457-4303-bf0e-60cf6562d0f9]]
-2024-08-07 11:30:56 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:30:56 - Completed 200 OK
-2024-08-07 11:31:15 - POST "/api/events/96ab0f71-6457-4303-bf0e-60cf6562d0f9/member-actions", parameters={}
-2024-08-07 11:31:15 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest)
-2024-08-07 11:31:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:31:15 - Read "application/json;charset=UTF-8" to [MemberActionsSaveRequest[members=[이상], status=IN]]
-2024-08-07 11:31:15 - Found thread-bound EntityManager [SessionImpl(406035361)] for JPA transaction
-2024-08-07 11:31:15 - Creating new transaction with name [server.haengdong.application.MemberActionService.saveMemberAction]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 11:31:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 11:31:15 - begin
-2024-08-07 11:31:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@32eba863]
-2024-08-07 11:31:15 - Created new SQL alias : e1_0
-2024-08-07 11:31:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(725869027332541))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event]
-2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@49d53364
-2024-08-07 11:31:15 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(725869027332541).token)
-2024-08-07 11:31:15 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.Event(725869027332541)]
- | +-BasicFetch [server.haengdong.domain.event.Event(725869027332541).name]
- | +-BasicFetch [server.haengdong.domain.event.Event(725869027332541).password]
- | \-BasicFetch [server.haengdong.domain.event.Event(725869027332541).token]
-
-2024-08-07 11:31:15 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : server.haengdong.domain.event.Event(725869027332541)) {
- primaryTableReference : event as e1_0
- }
- }
- }
-
-2024-08-07 11:31:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL
-2024-08-07 11:31:15 - Initializer list:
- server.haengdong.domain.event.Event(725869027332541) -> EntityResultInitializer(server.haengdong.domain.event.Event(725869027332541))@1226585597 (SingleTableEntityPersister(server.haengdong.domain.event.Event))
-
-2024-08-07 11:31:15 -
- select
- e1_0.id,
- e1_0.name,
- e1_0.password,
- e1_0.token
- from
- event e1_0
- where
- e1_0.token=?
-2024-08-07 11:31:15 - Extracted JDBC value [0] - [1]
-2024-08-07 11:31:15 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(725869027332541)): 1
-2024-08-07 11:31:15 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(725869027332541)#1] : 805903210
-2024-08-07 11:31:15 - Extracted JDBC value [1] - [1234]
-2024-08-07 11:31:15 - Extracted JDBC value [2] - [1234]
-2024-08-07 11:31:15 - Extracted JDBC value [3] - [96ab0f71-6457-4303-bf0e-60cf6562d0f9]
-2024-08-07 11:31:15 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(725869027332541)#1
-2024-08-07 11:31:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7413f67b
-2024-08-07 11:31:15 - Processing flush-time cascades
-2024-08-07 11:31:15 - Dirty checking collections
-2024-08-07 11:31:15 - Created new SQL alias : ma1_0
-2024-08-07 11:31:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction]
-2024-08-07 11:31:15 - Created new SQL alias : a1_0
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6d02def6] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action]
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4c3bead3] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event]
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@8b867fd] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event]
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@8b867fd] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(725868986071750).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@4c3bead3
-2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event)
-2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event)
-2024-08-07 11:31:15 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(725868986071750).event)
-2024-08-07 11:31:15 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)]
- | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(725868986071750)]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName]
- | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status]
-
-2024-08-07 11:31:15 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) {
- primaryTableReference : member_action as ma1_0
- TableGroupJoins {
- join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(725868986071750)) {
- primaryTableReference : action as a1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(725868986071750).event) {
- }
- join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(725868986071750).event) {
- }
- }
- }
- }
- }
- }
- }
-
-2024-08-07 11:31:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 11:31:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 11:31:15 - Listing entities:
-2024-08-07 11:31:15 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9}
-2024-08-07 11:31:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL
-2024-08-07 11:31:15 - Initializer list:
- server.haengdong.domain.action.MemberAction(m).action(725868986071750) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(725868986071750))@1693709220 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1460808758)
- server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@898677779 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction))
- server.haengdong.domain.action.MemberAction(m).action(725868986071750).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(725868986071750).event)@164187974 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1918694152)
-
-2024-08-07 11:31:15 -
- select
- ma1_0.id,
- a1_0.id,
- a1_0.event_id,
- a1_0.sequence,
- ma1_0.member_group_id,
- ma1_0.member_name,
- ma1_0.status
- from
- member_action ma1_0
- join
- action a1_0
- on a1_0.id=ma1_0.action_id
- where
- a1_0.event_id=?
-2024-08-07 11:31:15 - Processing flush-time cascades
-2024-08-07 11:31:15 - Dirty checking collections
-2024-08-07 11:31:15 - Created new SQL alias : a1_0
-2024-08-07 11:31:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action(a))] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action]
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ae36614] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event]
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39315a79] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event]
-2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39315a79] for NavigablePath [server.haengdong.domain.action.Action(a).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@ae36614
-2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event)
-2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event)
-2024-08-07 11:31:15 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.Action(a).event)
-2024-08-07 11:31:15 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.Action(a)]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action(a).event]
- | \-BasicFetch [server.haengdong.domain.action.Action(a).sequence]
-
-2024-08-07 11:31:15 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : server.haengdong.domain.action.Action(a)) {
- primaryTableReference : action as a1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.action.Action(a).event) {
- }
- join LazyTableGroup (e2 : server.haengdong.domain.action.Action(a).event) {
- }
- }
- }
- }
- }
-
-2024-08-07 11:31:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 11:31:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 11:31:15 - Listing entities:
-2024-08-07 11:31:15 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9}
-2024-08-07 11:31:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL
-2024-08-07 11:31:15 - Initializer list:
- server.haengdong.domain.action.Action(a) -> EntityResultInitializer(server.haengdong.domain.action.Action(a))@427362830 (SingleTableEntityPersister(server.haengdong.domain.action.Action))
- server.haengdong.domain.action.Action(a).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.Action(a).event)@130665168 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1918694152)
-
-2024-08-07 11:31:15 -
- select
- a1_0.id,
- a1_0.event_id,
- a1_0.sequence
- from
- action a1_0
- where
- a1_0.event_id=?
- order by
- a1_0.sequence desc
- fetch
- first 1 rows only
-2024-08-07 11:31:15 - Found thread-bound EntityManager [SessionImpl(406035361)] for JPA transaction
-2024-08-07 11:31:15 - Participating in existing transaction
-2024-08-07 11:31:15 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 11:31:15 - Executing identity-insert immediately
-2024-08-07 11:31:15 -
- insert
- into
- action
- (event_id, sequence, id)
- values
- (?, ?, default)
-2024-08-07 11:31:15 - Initializer list is empty
-2024-08-07 11:31:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6c83f5cf
-2024-08-07 11:31:15 - Extracted JDBC value [0] - [1]
-2024-08-07 11:31:15 - Extracted generated values [server.haengdong.domain.action.Action]: [Ljava.lang.Object;@6679ed57
-2024-08-07 11:31:15 - Executing identity-insert immediately
-2024-08-07 11:31:15 -
- insert
- into
- member_action
- (action_id, member_group_id, member_name, status, id)
- values
- (?, ?, ?, ?, default)
-2024-08-07 11:31:15 - Initializer list is empty
-2024-08-07 11:31:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@63b778b2
-2024-08-07 11:31:15 - Extracted JDBC value [0] - [1]
-2024-08-07 11:31:15 - Extracted generated values [server.haengdong.domain.action.MemberAction]: [Ljava.lang.Object;@3b1237c4
-2024-08-07 11:31:15 - Initiating transaction commit
-2024-08-07 11:31:15 - Committing JPA transaction on EntityManager [SessionImpl(406035361)]
-2024-08-07 11:31:15 - committing
-2024-08-07 11:31:15 - Processing flush-time cascades
-2024-08-07 11:31:15 - Dirty checking collections
-2024-08-07 11:31:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 3 objects
-2024-08-07 11:31:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 11:31:15 - Listing entities:
-2024-08-07 11:31:15 - server.haengdong.domain.action.Action{sequence=1, id=1, event=server.haengdong.domain.event.Event#1}
-2024-08-07 11:31:15 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9}
-2024-08-07 11:31:15 - server.haengdong.domain.action.MemberAction{action=server.haengdong.domain.action.Action#1, memberGroupId=1722997875745, memberName=이상, id=1, status=IN}
-2024-08-07 11:31:15 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 11:31:15 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 11:31:15 - Nothing to write: null body
-2024-08-07 11:31:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 11:31:15 - Completed 200 OK
-2024-08-07 11:31:16 - RMI TCP Connection(4)-127.0.0.1: (port 60378) connection closed
-2024-08-07 11:31:16 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60382,localport=60378]
-2024-08-07 11:31:16 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60382,localport=60378]
-2024-08-07 11:31:16 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:31:16 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 11:31:26 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC
-2024-08-07 11:31:26 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 11:30:45 KST 2024
-2024-08-07 11:31:26 - Stopping beans in phase 2147483647
-2024-08-07 11:31:26 - Bean 'applicationTaskExecutor' completed its stop procedure
-2024-08-07 11:31:26 - Stopping beans in phase 2147482623
-2024-08-07 11:31:26 - Bean 'webServerGracefulShutdown' completed its stop procedure
-2024-08-07 11:31:26 - Stopping beans in phase 2147481599
-2024-08-07 11:31:26 - Bean 'webServerStartStop' completed its stop procedure
-2024-08-07 11:31:26 - Stopping beans in phase -2147483647
-2024-08-07 11:31:26 - Bean 'springBootLoggingLifecycle' completed its stop procedure
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain
-2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain
-2024-08-07 11:31:26 - Unregistering JMX-exposed beans on shutdown
-2024-08-07 11:31:26 - Unregistering JMX-exposed beans
-2024-08-07 11:31:26 - Shutting down ExecutorService 'applicationTaskExecutor'
-2024-08-07 11:31:26 - Closing JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 11:31:26 - HHH000031: Closing
-2024-08-07 11:31:26 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@66bdbc4] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@76d220eb]
-2024-08-07 11:31:26 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries
-2024-08-07 11:31:26 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries
-2024-08-07 11:31:26 - HikariPool-1 - Shutdown initiated...
-2024-08-07 11:31:26 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 11:31:26 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0)
-2024-08-07 11:31:26 - HikariPool-1 - Shutdown completed.
-2024-08-07 11:31:26 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed
-2024-08-07 16:13:19 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
-2024-08-07 16:13:19 - HV000001: Hibernate Validator 8.0.1.Final
-2024-08-07 16:13:19 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 16:13:19 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 16:13:19 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 16:13:19 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 16:13:19 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 16:13:19 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 16:13:19 - Starting HaengdongApplication using Java 17.0.12 with PID 59597 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong)
-2024-08-07 16:13:19 - Running with Spring Boot v3.3.1, Spring v6.1.10
-2024-08-07 16:13:19 - No active profile set, falling back to 1 default profile: "default"
-2024-08-07 16:13:19 - Loading source class server.haengdong.HaengdongApplication
-2024-08-07 16:13:19 - Loaded expression factory via original TCCL
-2024-08-07 16:13:19 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
-2024-08-07 16:13:19 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class]
-2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class]
-2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class]
-2024-08-07 16:13:19 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
-2024-08-07 16:13:19 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled.
-2024-08-07 16:13:19 - Scanning for JPA repositories in packages server.haengdong.
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 16:13:19 - Finished Spring Data repository scanning in 17 ms. Found 4 JPA repository interfaces.
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'methodValidationPostProcessor'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
-2024-08-07 16:13:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 16:13:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'transactionAttributeSource'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'transactionInterceptor'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'observationRegistryPostProcessor'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
-2024-08-07 16:13:19 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@24876a7e]
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
-2024-08-07 16:13:19 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]
-org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
- at org.apache.tomcat.jni.Library.(Library.java:91)
- at org.apache.tomcat.jni.Library.initialize(Library.java:147)
- at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209)
- at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:138)
- at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'sslBundleRegistry'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'fileWatcher'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64212]
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'errorPageCustomizer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'dispatcherServletRegistration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'dispatcherServlet'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:19 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:19 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:19 - [javax.management.remote.rmi.RMIConnectionImpl@5b275301: connectionId=rmi://192.168.5.4 1] closing.
-2024-08-07 16:13:19 - [javax.management.remote.rmi.RMIConnectionImpl@5b275301: connectionId=rmi://192.168.5.4 1] closed.
-2024-08-07 16:13:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'multipartConfigElement'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 16:13:19 - Class not found so assuming code is running on a pre-Java 19 JVM
-java.lang.ClassNotFoundException: java.lang.WrongThreadException
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre19Compat.(Jre19Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:19 - Class not found so assuming code is running on a pre-Java 21 JVM
-java.lang.ClassNotFoundException: java.lang.Thread$Builder
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre21Compat.(Jre21Compat.java:43)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:19 - Class not found so assuming code is running on a pre-Java 22 JVM
-java.lang.ClassNotFoundException: java.text.ListFormat
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre22Compat.(Jre22Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:19 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]]
-2024-08-07 16:13:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 16:13:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 16:13:19 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
-2024-08-07 16:13:19 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]]
-2024-08-07 16:13:19 - Tomcat initialized with port 8080 (http)
-2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING]
-2024-08-07 16:13:19 - Initializing ProtocolHandler ["http-nio-8080"]
-2024-08-07 16:13:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Starting service [Tomcat]
-2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Starting Servlet engine: [Apache Tomcat/10.1.25]
-2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Starting this Loader
-2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:13:19 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
-2024-08-07 16:13:19 - Configured a manager of class [org.apache.catalina.session.StandardManager]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [INITIALIZING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [INITIALIZED]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [STARTING_PREP]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [STARTING]
-2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [STARTED]
-2024-08-07 16:13:19 - Initializing Spring embedded WebApplicationContext
-2024-08-07 16:13:19 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
-2024-08-07 16:13:19 - Root WebApplicationContext: initialization completed in 791 ms
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'webMvcObservationFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'observationRegistry'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'propertiesObservationFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'defaultMeterObservationHandler'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'simpleMeterRegistry'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'simpleConfig'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'micrometerClock'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'propertiesMeterFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'h2Console'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'dataSource'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'jdbcConnectionDetails'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails'
-2024-08-07 16:13:19 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
-2024-08-07 16:13:19 - HikariPool-1 - configuration:
-2024-08-07 16:13:19 - allowPoolSuspension.............false
-2024-08-07 16:13:19 - autoCommit......................true
-2024-08-07 16:13:19 - catalog.........................none
-2024-08-07 16:13:19 - connectionInitSql...............none
-2024-08-07 16:13:19 - connectionTestQuery.............none
-2024-08-07 16:13:19 - connectionTimeout...............30000
-2024-08-07 16:13:19 - dataSource......................none
-2024-08-07 16:13:19 - dataSourceClassName.............none
-2024-08-07 16:13:19 - dataSourceJNDI..................none
-2024-08-07 16:13:19 - dataSourceProperties............{password=}
-2024-08-07 16:13:19 - driverClassName................."org.h2.Driver"
-2024-08-07 16:13:19 - exceptionOverrideClassName......none
-2024-08-07 16:13:19 - healthCheckProperties...........{}
-2024-08-07 16:13:19 - healthCheckRegistry.............none
-2024-08-07 16:13:19 - idleTimeout.....................600000
-2024-08-07 16:13:19 - initializationFailTimeout.......1
-2024-08-07 16:13:19 - isolateInternalQueries..........false
-2024-08-07 16:13:19 - jdbcUrl.........................jdbc:h2:mem:database
-2024-08-07 16:13:19 - keepaliveTime...................0
-2024-08-07 16:13:19 - leakDetectionThreshold..........0
-2024-08-07 16:13:19 - maxLifetime.....................1800000
-2024-08-07 16:13:19 - maximumPoolSize.................10
-2024-08-07 16:13:19 - metricRegistry..................none
-2024-08-07 16:13:19 - metricsTrackerFactory...........none
-2024-08-07 16:13:19 - minimumIdle.....................10
-2024-08-07 16:13:19 - password........................
-2024-08-07 16:13:19 - poolName........................"HikariPool-1"
-2024-08-07 16:13:19 - readOnly........................false
-2024-08-07 16:13:19 - registerMbeans..................false
-2024-08-07 16:13:19 - scheduledExecutor...............none
-2024-08-07 16:13:19 - schema..........................none
-2024-08-07 16:13:19 - threadFactory...................internal
-2024-08-07 16:13:19 - transactionIsolation............default
-2024-08-07 16:13:19 - username........................"sa"
-2024-08-07 16:13:19 - validationTimeout...............5000
-2024-08-07 16:13:19 - HikariPool-1 - Starting...
-2024-08-07 16:13:19 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:19 - HikariPool-1 - Start completed.
-2024-08-07 16:13:19 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletEndpointRegistrar'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletEndpointDiscoverer'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'webEndpointPathMapper'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter'
-2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'requestContextFilter'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'formContentFilter'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'characterEncodingFilter'
-2024-08-07 16:13:20 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
-2024-08-07 16:13:20 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*]
-2024-08-07 16:13:20 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED]
-2024-08-07 16:13:20 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:13:20 - Filter 'requestContextFilter' configured for use
-2024-08-07 16:13:20 - Filter 'webMvcObservationFilter' configured for use
-2024-08-07 16:13:20 - Filter 'characterEncodingFilter' configured for use
-2024-08-07 16:13:20 - Filter 'formContentFilter' configured for use
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat]] to [STARTING]
-2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [STARTING_PREP]
-2024-08-07 16:13:20 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [STARTING]
-2024-08-07 16:13:20 - Registered host [localhost]
-2024-08-07 16:13:20 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 16:13:20 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 16:13:20 - Register Context [] for service [StandardService[Tomcat]]
-2024-08-07 16:13:20 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
-2024-08-07 16:13:20 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardService[Tomcat]] to [STARTED]
-2024-08-07 16:13:20 - Setting state for [StandardServer[-1]] to [STARTED]
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'entityManagerFactory'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpaVendorAdapter'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'persistenceManagedTypes'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes'
-2024-08-07 16:13:20 - Building JPA container EntityManagerFactory for persistence unit 'default'
-2024-08-07 16:13:20 - PersistenceUnitInfo [
- name: default
- persistence provider classname: null
- classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
- excludeUnlistedClasses: true
- JTA datasource: null
- Non JTA datasource: HikariDataSource (HikariPool-1)
- Transaction type: RESOURCE_LOCAL
- PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/
- Shared Cache Mode: UNSPECIFIED
- Validation Mode: AUTO
- Jar files URLs []
- Managed classes names [
- server.haengdong.domain.action.Action
- server.haengdong.domain.action.BillAction
- server.haengdong.domain.action.MemberAction
- server.haengdong.domain.event.Event
- server.haengdong.domain.event.EventStep]
- Mapping files names []
- Properties []
-2024-08-07 16:13:20 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator].
-2024-08-07 16:13:20 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator].
-2024-08-07 16:13:20 - HHH000412: Hibernate ORM core version 6.5.2.Final
-2024-08-07 16:13:20 - HHH000206: 'hibernate.properties' not found
-2024-08-07 16:13:20 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator]
-2024-08-07 16:13:20 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered
-2024-08-07 16:13:20 - HHH000026: Second-level cache disabled
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@26cdd4af
-2024-08-07 16:13:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@26cdd4af
-2024-08-07 16:13:20 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@26cdd4af
-2024-08-07 16:13:20 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@707f4647
-2024-08-07 16:13:20 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@707f4647
-2024-08-07 16:13:20 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 16:13:20 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@4b8a0d03
-2024-08-07 16:13:20 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 16:13:20 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@54f373d4
-2024-08-07 16:13:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 16:13:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 16:13:20 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@1c53bd49
-2024-08-07 16:13:20 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 16:13:20 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 16:13:20 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@16949dfa
-2024-08-07 16:13:20 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 16:13:20 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@d6d683e
-2024-08-07 16:13:20 - Adding type registration image -> org.hibernate.type.BasicTypeReference@42cfd794
-2024-08-07 16:13:20 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@43778371
-2024-08-07 16:13:20 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@43778371
-2024-08-07 16:13:20 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@71beada8
-2024-08-07 16:13:20 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@17f41739
-2024-08-07 16:13:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@2b3b1124
-2024-08-07 16:13:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@2b3b1124
-2024-08-07 16:13:20 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@2b3b1124
-2024-08-07 16:13:20 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@54286339
-2024-08-07 16:13:20 - Adding type registration int -> org.hibernate.type.BasicTypeReference@54286339
-2024-08-07 16:13:20 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@54286339
-2024-08-07 16:13:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 16:13:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 16:13:20 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@507f47f9
-2024-08-07 16:13:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 16:13:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 16:13:20 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@6785df10
-2024-08-07 16:13:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 16:13:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 16:13:20 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@144440f5
-2024-08-07 16:13:20 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 16:13:20 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 16:13:20 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 16:13:20 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 16:13:20 - Adding type registration character -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 16:13:20 - Adding type registration char -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 16:13:20 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 16:13:20 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@56499781
-2024-08-07 16:13:20 - Adding type registration string -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 16:13:20 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 16:13:20 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2a2798a2
-2024-08-07 16:13:20 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 16:13:20 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 16:13:20 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 16:13:20 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@31f1b268
-2024-08-07 16:13:20 - Adding type registration text -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 16:13:20 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2833c093
-2024-08-07 16:13:20 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@7598d675
-2024-08-07 16:13:20 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@7598d675
-2024-08-07 16:13:20 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 16:13:20 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 16:13:20 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 16:13:20 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 16:13:20 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@4ff074a0
-2024-08-07 16:13:20 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@340fc1aa
-2024-08-07 16:13:20 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@34a33343
-2024-08-07 16:13:20 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@98722ef
-2024-08-07 16:13:20 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 16:13:20 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 16:13:20 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@fd69983
-2024-08-07 16:13:20 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@fd69983
-2024-08-07 16:13:20 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 16:13:20 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 16:13:20 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@126254ec
-2024-08-07 16:13:20 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@126254ec
-2024-08-07 16:13:20 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 16:13:20 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 16:13:20 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1c788d08
-2024-08-07 16:13:20 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84
-2024-08-07 16:13:20 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 16:13:20 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 16:13:20 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 16:13:20 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1df06ecd
-2024-08-07 16:13:20 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@57927bc9
-2024-08-07 16:13:20 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@323efafe
-2024-08-07 16:13:20 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@323efafe
-2024-08-07 16:13:20 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@32dbca45
-2024-08-07 16:13:20 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2cc34cd5
-2024-08-07 16:13:20 - Adding type registration date -> org.hibernate.type.BasicTypeReference@684b26b7
-2024-08-07 16:13:20 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@684b26b7
-2024-08-07 16:13:20 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2de7c84a
-2024-08-07 16:13:20 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2de7c84a
-2024-08-07 16:13:20 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 16:13:20 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 16:13:20 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 16:13:20 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 16:13:20 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 16:13:20 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 16:13:20 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 16:13:20 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 16:13:20 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 16:13:20 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 16:13:20 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 16:13:20 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 16:13:20 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 16:13:20 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4f7ba0af
-2024-08-07 16:13:20 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 16:13:20 - Adding type registration class -> org.hibernate.type.BasicTypeReference@3f4964f2
-2024-08-07 16:13:20 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@3f4964f2
-2024-08-07 16:13:20 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@3bf01a01
-2024-08-07 16:13:20 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3bf01a01
-2024-08-07 16:13:20 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3bf01a01
-2024-08-07 16:13:20 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@299cab08
-2024-08-07 16:13:20 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@299cab08
-2024-08-07 16:13:20 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 16:13:20 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 16:13:20 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@186f7434
-2024-08-07 16:13:20 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@186f7434
-2024-08-07 16:13:20 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2374452a
-2024-08-07 16:13:20 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2374452a
-2024-08-07 16:13:20 - Adding type registration url -> org.hibernate.type.BasicTypeReference@6ffc6ea7
-2024-08-07 16:13:20 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@6ffc6ea7
-2024-08-07 16:13:20 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@2c5708e7
-2024-08-07 16:13:20 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@4ffa078d
-2024-08-07 16:13:20 - Adding type registration object -> org.hibernate.type.JavaObjectType@2b400bd0
-2024-08-07 16:13:20 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2b400bd0
-2024-08-07 16:13:20 - Adding type registration null -> org.hibernate.type.NullType@41e7a544
-2024-08-07 16:13:20 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3b66ac74
-2024-08-07 16:13:20 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@573870cb
-2024-08-07 16:13:20 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@5b88af70
-2024-08-07 16:13:20 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2739ecc0
-2024-08-07 16:13:20 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2932e15f
-2024-08-07 16:13:20 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3d98729a
-2024-08-07 16:13:20 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@2375a976
-2024-08-07 16:13:20 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@4bc21e34
-2024-08-07 16:13:20 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3] into BootstrapContext; was [null]
-2024-08-07 16:13:20 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3) [was null]
-2024-08-07 16:13:20 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@32646ecf] into BootstrapContext; was [null]
-2024-08-07 16:13:20 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@68f9e807] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@23708f14]
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - No LoadTimeWeaver setup: ignoring JPA class transformer
-2024-08-07 16:13:20 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3]
-2024-08-07 16:13:20 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3]
-2024-08-07 16:13:20 - Database ->
- name : H2
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 16:13:20 - Driver ->
- name : H2 JDBC Driver
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 16:13:20 - JDBC version : 4.2
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224
-2024-08-07 16:13:20 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case
-2024-08-07 16:13:20 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor)
-2024-08-07 16:13:20 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor)
-2024-08-07 16:13:20 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor)
-2024-08-07 16:13:20 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 16:13:20 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 16:13:20 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor)
-2024-08-07 16:13:20 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015)
-2024-08-07 16:13:20 - Adding type registration Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 16:13:20 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 16:13:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@3d50a3d9] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3661b732]
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0)
-2024-08-07 16:13:20 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}]
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.action.Action
-2024-08-07 16:13:20 - Import with entity name Action
-2024-08-07 16:13:20 - Bind entity server.haengdong.domain.action.Action on table action
-2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id]
-2024-08-07 16:13:20 - building BasicValue for id
-2024-08-07 16:13:20 - Skipping column re-registration: action.id
-2024-08-07 16:13:20 - Building property id
-2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - Building property event
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence]
-2024-08-07 16:13:20 - building BasicValue for sequence
-2024-08-07 16:13:20 - Skipping column re-registration: action.sequence
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:20 - Building property sequence
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:20 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.action.BillAction
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - Import with entity name BillAction
-2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@1bdebf03: connectionId=rmi://192.168.5.4 2] closing.
-2024-08-07 16:13:20 - Bind entity server.haengdong.domain.action.BillAction on table bill_action
-2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@1bdebf03: connectionId=rmi://192.168.5.4 2] closed.
-2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id]
-2024-08-07 16:13:20 - building BasicValue for id
-2024-08-07 16:13:20 - Skipping column re-registration: bill_action.id
-2024-08-07 16:13:20 - Building property id
-2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Building property action
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property price with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price]
-2024-08-07 16:13:20 - building BasicValue for price
-2024-08-07 16:13:20 - Skipping column re-registration: bill_action.price
-2024-08-07 16:13:20 - Building property price
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property title with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title]
-2024-08-07 16:13:20 - building BasicValue for title
-2024-08-07 16:13:20 - Skipping column re-registration: bill_action.title
-2024-08-07 16:13:20 - Building property title
-2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction
-2024-08-07 16:13:20 - Import with entity name MemberAction
-2024-08-07 16:13:20 - Bind entity server.haengdong.domain.action.MemberAction on table member_action
-2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id]
-2024-08-07 16:13:20 - building BasicValue for id
-2024-08-07 16:13:20 - Skipping column re-registration: member_action.id
-2024-08-07 16:13:20 - Building property id
-2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Building property action
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property memberGroupId with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId]
-2024-08-07 16:13:20 - building BasicValue for memberGroupId
-2024-08-07 16:13:20 - Skipping column re-registration: member_action.member_group_id
-2024-08-07 16:13:20 - Building property memberGroupId
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property memberName with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName]
-2024-08-07 16:13:20 - building BasicValue for memberName
-2024-08-07 16:13:20 - Skipping column re-registration: member_action.member_name
-2024-08-07 16:13:20 - Building property memberName
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property status with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status]
-2024-08-07 16:13:20 - building BasicValue for status
-2024-08-07 16:13:20 - Skipping column re-registration: member_action.status
-2024-08-07 16:13:20 - Building property status
-2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.event.Event
-2024-08-07 16:13:20 - Import with entity name Event
-2024-08-07 16:13:20 - Bind entity server.haengdong.domain.event.Event on table event
-2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id]
-2024-08-07 16:13:20 - building BasicValue for id
-2024-08-07 16:13:20 - Skipping column re-registration: event.id
-2024-08-07 16:13:20 - Building property id
-2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name]
-2024-08-07 16:13:20 - building BasicValue for name
-2024-08-07 16:13:20 - Skipping column re-registration: event.name
-2024-08-07 16:13:20 - Building property name
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property password with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password]
-2024-08-07 16:13:20 - building BasicValue for password
-2024-08-07 16:13:20 - Skipping column re-registration: event.password
-2024-08-07 16:13:20 - Building property password
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property token with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token]
-2024-08-07 16:13:20 - building BasicValue for token
-2024-08-07 16:13:20 - Skipping column re-registration: event.token
-2024-08-07 16:13:20 - Building property token
-2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.event.EventStep
-2024-08-07 16:13:20 - Import with entity name EventStep
-2024-08-07 16:13:20 - Bind entity server.haengdong.domain.event.EventStep on table event_step
-2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id]
-2024-08-07 16:13:20 - building BasicValue for id
-2024-08-07 16:13:20 - Skipping column re-registration: event_step.id
-2024-08-07 16:13:20 - Building property id
-2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - Building property event
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name]
-2024-08-07 16:13:20 - building BasicValue for name
-2024-08-07 16:13:20 - Skipping column re-registration: event_step.name
-2024-08-07 16:13:20 - Building property name
-2024-08-07 16:13:20 - Binding column: AnnotatedColumn()
-2024-08-07 16:13:20 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence]
-2024-08-07 16:13:20 - building BasicValue for sequence
-2024-08-07 16:13:20 - Skipping column re-registration: event_step.sequence
-2024-08-07 16:13:20 - Building property sequence
-2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for price
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for title
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for memberName
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for status
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for password
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for token
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [action]
-2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action]
-2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action]
-2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event]
-2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step]
-2024-08-07 16:13:20 - Building session factory
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0)
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 16:13:20 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@2979c6ef, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@1af6974c, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator=
-, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1097716332110316034, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=59597, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1097716332110316034, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@61d61b0e, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0}
-2024-08-07 16:13:20 - Session factory constructed with filter configurations : {}
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 16:13:20 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 16:13:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 16:13:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 16:13:20 - Loaded expression factory via original TCCL
-2024-08-07 16:13:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 16:13:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@b6b746b] under count; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@29bf90fc] under every; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@6e22d6bf] under any; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f838072] under sinh; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@46c9ee28] under cosh; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under tanh; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under pi; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under log; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : length -> character_length
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@5216532a] under position; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@e2344da] under overlay; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@21d48c40] under trim; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@5382a35f] under cast; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7901a5ab] under collate; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3e24bab6] under extract; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@391e2a] under ifnull; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@25dc2c0] under pad; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@6a8bcb64] under str; prior registration was null
-2024-08-07 16:13:20 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@149238fe] under format; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@b814e23] under timestampadd; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@16732340] under timestampdiff; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : dateadd -> timestampadd
-2024-08-07 16:13:20 - Registering alternate key : datediff -> timestampdiff
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under current_date; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under current_time; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under current_timestamp; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : current date -> current_date
-2024-08-07 16:13:20 - Registering alternate key : current time -> current_time
-2024-08-07 16:13:20 - Registering alternate key : current timestamp -> current_timestamp
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under local_date; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under local_time; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under local_datetime; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under offset_datetime; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : local date -> local_date
-2024-08-07 16:13:20 - Registering alternate key : local time -> local_time
-2024-08-07 16:13:20 - Registering alternate key : local datetime -> local_datetime
-2024-08-07 16:13:20 - Registering alternate key : offset datetime -> offset_datetime
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under instant; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : current_instant -> instant
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@57ed8f95] under sql; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@1c25deb0] under count; prior registration was org.hibernate.dialect.function.CountFunction@b6b746b
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@6fe337a5] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7d60bd5a] under mod; prior registration was NamedSqmFunctionTemplate(mod)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : day -> day_of_month
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@123d0816
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@4601a148
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@34f8ce89] under trunc; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : truncate -> trunc
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@22ed2886] under date_trunc; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : chr -> char
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@30ca66c5] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@5216532a
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under concat; prior registration was NamedSqmFunctionTemplate(concat)
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : every -> bool_and
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null
-2024-08-07 16:13:20 - Registering alternate key : any -> bool_or
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@38c1b1a7] under format; prior registration was org.hibernate.dialect.function.FormatFunction@149238fe
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@792b9dd3] under listagg; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@41948c13] under mode; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3085befb] under percentile_cont; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@62264d4f] under percentile_disc; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@322eb1a] under rank; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2b4ba2d9] under dense_rank; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under percent_rank; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4eab9aec] under cume_dist; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@440d2d64] under array; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@1a712f12] under array_list; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@68fc636a] under array_agg; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@6b03c35c] under array_position; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7ea8224b] under array_positions; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4c0ab04f] under array_positions_list; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@384f0e32] under array_length; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@4803bf73] under array_concat; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@10b5ff4d] under array_prepend; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@58835bba] under array_append; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5400db7e] under array_contains; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@a84b6de] under array_contains_nullable; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@40d04cf8] under array_overlaps; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@75507e68] under array_overlaps_nullable; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@64921450] under array_get; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@2681185e] under array_set; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@15fd3088] under array_remove; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@b5bddfe] under array_remove_index; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe3f9ef] under array_slice; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@b75f3f4] under array_replace; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@691a5c3a] under array_trim; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@31cddb11] under array_fill; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@510bd87a] under array_fill_list; prior registration was null
-2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4ef277ef] under array_to_string; prior registration was null
-2024-08-07 16:13:20 - abs(NUMERIC arg)
-2024-08-07 16:13:20 - Double acos(NUMERIC arg)
-2024-08-07 16:13:20 - Boolean any(BOOLEAN predicate)
-2024-08-07 16:13:20 - array( ... )
-2024-08-07 16:13:20 - array_agg(arg)
-2024-08-07 16:13:20 - array_append( ... )
-2024-08-07 16:13:20 - array_concat( ... )
-2024-08-07 16:13:20 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 16:13:20 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 16:13:20 - array_fill(OBJECT element, INTEGER elementCount)
-2024-08-07 16:13:20 - array_fill_list(OBJECT element, INTEGER elementCount)
-2024-08-07 16:13:20 - array_get(ARRAY array, INTEGER index)
-2024-08-07 16:13:20 - Integer array_length(ARRAY array)
-2024-08-07 16:13:20 - array_list( ... )
-2024-08-07 16:13:20 - Boolean array_overlaps(ARRAY array0, OBJECT array1)
-2024-08-07 16:13:20 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1)
-2024-08-07 16:13:20 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition])
-2024-08-07 16:13:20 - int[] array_positions(ARRAY array, OBJECT element)
-2024-08-07 16:13:20 - List array_positions_list(ARRAY array, OBJECT element)
-2024-08-07 16:13:20 - array_prepend( ... )
-2024-08-07 16:13:20 - array_remove( ... )
-2024-08-07 16:13:20 - array_remove_index( ... )
-2024-08-07 16:13:20 - array_replace( ... )
-2024-08-07 16:13:20 - array_set( ... )
-2024-08-07 16:13:20 - array_slice(ARRAY array, INTEGER start, INTEGER end)
-2024-08-07 16:13:20 - String array_to_string( ... )
-2024-08-07 16:13:20 - array_trim(ARRAY array, INTEGER elementsToRemove)
-2024-08-07 16:13:20 - Integer ascii(STRING arg)
-2024-08-07 16:13:20 - Double asin(NUMERIC arg)
-2024-08-07 16:13:20 - Double atan(NUMERIC arg)
-2024-08-07 16:13:20 - Double atan2(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 16:13:20 - avg(NUMERIC arg)
-2024-08-07 16:13:20 - bit_and(arg)
-2024-08-07 16:13:20 - Integer bit_length(STRING_OR_CLOB arg)
-2024-08-07 16:13:20 - bit_or(arg)
-2024-08-07 16:13:20 - bitand(arg0, arg1)
-2024-08-07 16:13:20 - bitnot(arg)
-2024-08-07 16:13:20 - bitor(arg0, arg1)
-2024-08-07 16:13:20 - bitxor(arg0, arg1)
-2024-08-07 16:13:20 - Boolean bool_and(BOOLEAN predicate)
-2024-08-07 16:13:20 - Boolean bool_or(BOOLEAN predicate)
-2024-08-07 16:13:20 - cast(arg as Type)
-2024-08-07 16:13:20 - ceiling(NUMERIC arg)
-2024-08-07 16:13:20 - Character char(INTEGER arg)
-2024-08-07 16:13:20 - Integer character_length(STRING_OR_CLOB arg)
-2024-08-07 16:13:20 - Character chr(INTEGER arg)
-2024-08-07 16:13:20 - coalesce(arg0[, arg1[, ...]])
-2024-08-07 16:13:20 - String collate(STRING string as COLLATION collation)
-2024-08-07 16:13:20 - String concat(STRING string0[, STRING string1[, ...]])
-2024-08-07 16:13:20 - Double cos(NUMERIC arg)
-2024-08-07 16:13:20 - Double cosh(NUMERIC arg)
-2024-08-07 16:13:20 - Double cot(NUMERIC arg)
-2024-08-07 16:13:20 - Long count([distinct ]{arg|*})
-2024-08-07 16:13:20 - Double cume_dist([arg0[, ...]])
-2024-08-07 16:13:20 - Date curdate()
-2024-08-07 16:13:20 - Date current date
-2024-08-07 16:13:20 - Time current time
-2024-08-07 16:13:20 - Timestamp current timestamp
-2024-08-07 16:13:20 - Date current_date
-2024-08-07 16:13:20 - Instant current_instant
-2024-08-07 16:13:20 - Time current_time
-2024-08-07 16:13:20 - Timestamp current_timestamp
-2024-08-07 16:13:20 - Time curtime()
-2024-08-07 16:13:20 - date_trunc(STRING field, TEMPORAL datetime)
-2024-08-07 16:13:20 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 16:13:20 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 16:13:20 - Integer day(DATE arg)
-2024-08-07 16:13:20 - Integer day_of_month(DATE arg)
-2024-08-07 16:13:20 - Integer day_of_week(DATE arg)
-2024-08-07 16:13:20 - Integer day_of_year(DATE arg)
-2024-08-07 16:13:20 - String dayname(DATE arg)
-2024-08-07 16:13:20 - Double degrees(NUMERIC arg)
-2024-08-07 16:13:20 - Long dense_rank([arg0[, ...]])
-2024-08-07 16:13:20 - Boolean every(BOOLEAN predicate)
-2024-08-07 16:13:20 - Double exp(NUMERIC arg)
-2024-08-07 16:13:20 - extract(TEMPORAL_UNIT field from TEMPORAL arg)
-2024-08-07 16:13:20 - first_valueANY value
-2024-08-07 16:13:20 - floor(NUMERIC arg)
-2024-08-07 16:13:20 - String format(TEMPORAL datetime as STRING pattern)
-2024-08-07 16:13:20 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 16:13:20 - Integer hour(TIME arg)
-2024-08-07 16:13:20 - ifnull(arg0, arg1)
-2024-08-07 16:13:20 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement)
-2024-08-07 16:13:20 - Instant instant
-2024-08-07 16:13:20 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]])
-2024-08-07 16:13:20 - lagANY value[, INTEGER offset[, ANY default]]
-2024-08-07 16:13:20 - last_valueANY value
-2024-08-07 16:13:20 - leadANY value[, INTEGER offset[, ANY default]]
-2024-08-07 16:13:20 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 16:13:20 - String left(STRING string, INTEGER length)
-2024-08-07 16:13:20 - Integer length(STRING_OR_CLOB arg)
-2024-08-07 16:13:20 - String listagg(STRING arg0, STRING arg1)
-2024-08-07 16:13:20 - Double ln(NUMERIC arg)
-2024-08-07 16:13:20 - LocalDate local date
-2024-08-07 16:13:20 - LocalDateTime local datetime
-2024-08-07 16:13:20 - LocalTime local time
-2024-08-07 16:13:20 - LocalDate local_date
-2024-08-07 16:13:20 - LocalDateTime local_datetime
-2024-08-07 16:13:20 - LocalTime local_time
-2024-08-07 16:13:20 - Time localtime
-2024-08-07 16:13:20 - Timestamp localtimestamp
-2024-08-07 16:13:20 - Integer locate(STRING pattern, STRING string[, INTEGER start])
-2024-08-07 16:13:20 - Double log(NUMERIC base, NUMERIC arg)
-2024-08-07 16:13:20 - Double log10(NUMERIC arg)
-2024-08-07 16:13:20 - String lower(STRING string)
-2024-08-07 16:13:20 - String lpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 16:13:20 - String ltrim(STRING string)
-2024-08-07 16:13:20 - max(COMPARABLE arg)
-2024-08-07 16:13:20 - Double median(NUMERIC arg)
-2024-08-07 16:13:20 - Integer microsecond(TIME arg)
-2024-08-07 16:13:20 - min(COMPARABLE arg)
-2024-08-07 16:13:20 - Integer minute(TIME arg)
-2024-08-07 16:13:20 - Integer mod(INTEGER arg0, INTEGER arg1)
-2024-08-07 16:13:20 - mode()
-2024-08-07 16:13:20 - Integer month(DATE arg)
-2024-08-07 16:13:20 - String monthname(DATE arg)
-2024-08-07 16:13:20 - Timestamp now()
-2024-08-07 16:13:20 - nth_valueANY value, INTEGER nth
-2024-08-07 16:13:20 - nullif(arg0, arg1)
-2024-08-07 16:13:20 - Integer octet_length(STRING_OR_CLOB arg)
-2024-08-07 16:13:20 - OffsetDateTime offset datetime
-2024-08-07 16:13:20 - OffsetDateTime offset_datetime
-2024-08-07 16:13:20 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length])
-2024-08-07 16:13:20 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character])
-2024-08-07 16:13:20 - Double percent_rank([arg0[, ...]])
-2024-08-07 16:13:20 - percentile_cont(NUMERIC arg)
-2024-08-07 16:13:20 - percentile_disc(NUMERIC arg)
-2024-08-07 16:13:20 - Double pi
-2024-08-07 16:13:20 - Integer position(STRING pattern in STRING string)
-2024-08-07 16:13:20 - Double power(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 16:13:20 - Integer quarter(DATE arg)
-2024-08-07 16:13:20 - Double radians(NUMERIC arg)
-2024-08-07 16:13:20 - Double rand([INTEGER seed])
-2024-08-07 16:13:20 - Long rank([arg0[, ...]])
-2024-08-07 16:13:20 - String repeat(STRING string, INTEGER times)
-2024-08-07 16:13:20 - String replace(STRING string, STRING pattern, STRING replacement)
-2024-08-07 16:13:20 - String right(STRING string, INTEGER length)
-2024-08-07 16:13:20 - round(NUMERIC number[, INTEGER places])
-2024-08-07 16:13:20 - Long row_number()
-2024-08-07 16:13:20 - Long rownum()
-2024-08-07 16:13:20 - String rpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 16:13:20 - String rtrim(STRING string)
-2024-08-07 16:13:20 - Integer second(TIME arg)
-2024-08-07 16:13:20 - Integer sign(NUMERIC arg)
-2024-08-07 16:13:20 - Double sin(NUMERIC arg)
-2024-08-07 16:13:20 - Double sinh(NUMERIC arg)
-2024-08-07 16:13:20 - String soundex(arg)
-2024-08-07 16:13:20 - String space(INTEGER arg)
-2024-08-07 16:13:20 - Object sql
-2024-08-07 16:13:20 - Double sqrt(NUMERIC arg)
-2024-08-07 16:13:20 - Double stddev_pop(NUMERIC arg)
-2024-08-07 16:13:20 - Double stddev_samp(NUMERIC arg)
-2024-08-07 16:13:20 - String str(arg)
-2024-08-07 16:13:20 - String substr(STRING string, INTEGER start[, INTEGER length])
-2024-08-07 16:13:20 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length])
-2024-08-07 16:13:20 - sum(arg)
-2024-08-07 16:13:20 - Timestamp sysdate
-2024-08-07 16:13:20 - Double tan(NUMERIC arg)
-2024-08-07 16:13:20 - Double tanh(NUMERIC arg)
-2024-08-07 16:13:20 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 16:13:20 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 16:13:20 - String translate(STRING arg0, STRING arg1, STRING arg2)
-2024-08-07 16:13:20 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1)
-2024-08-07 16:13:20 - trunc( ... )
-2024-08-07 16:13:20 - truncate( ... )
-2024-08-07 16:13:20 - String upper(STRING string)
-2024-08-07 16:13:20 - Double var_pop(NUMERIC arg)
-2024-08-07 16:13:20 - Double var_samp(NUMERIC arg)
-2024-08-07 16:13:20 - Integer week(DATE arg)
-2024-08-07 16:13:20 - Integer year(DATE arg)
-2024-08-07 16:13:20 - Starting QueryInterpretationCache(2048)
-2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:13:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 16:13:20 - Configured EntityCopyObserver strategy: disallow
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action]
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action]
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name]
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event]
-2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event]
-2024-08-07 16:13:20 - Starting post-init callbacks
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action]
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action]
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event]
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event]
-2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator
-2024-08-07 16:13:20 - Created new SQL alias : ba1_0
-2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction]
-2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@33b4c775] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action]
-2024-08-07 16:13:20 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.BillAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action]
- | +-BasicFetch [server.haengdong.domain.action.BillAction.price]
- | \-BasicFetch [server.haengdong.domain.action.BillAction.title]
-
-2024-08-07 16:13:20 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) {
- primaryTableReference : bill_action as ba1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.action.BillAction
-2024-08-07 16:13:20 - Version select: select id from bill_action where id=?
-2024-08-07 16:13:20 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default)
-2024-08-07 16:13:20 - Update (0): update bill_action set action_id=?,price=?,title=? where id=?
-2024-08-07 16:13:20 - Delete (0): delete from bill_action where id=?
-2024-08-07 16:13:20 - Created new SQL alias : ma1_0
-2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction]
-2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@288e50c1] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action]
-2024-08-07 16:13:20 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.MemberAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName]
- | \-BasicFetch [server.haengdong.domain.action.MemberAction.status]
-
-2024-08-07 16:13:20 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) {
- primaryTableReference : member_action as ma1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.action.MemberAction
-2024-08-07 16:13:20 - Version select: select id from member_action where id=?
-2024-08-07 16:13:20 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default)
-2024-08-07 16:13:20 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=?
-2024-08-07 16:13:20 - Delete (0): delete from member_action where id=?
-2024-08-07 16:13:20 - Created new SQL alias : e1_0
-2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event]
-2024-08-07 16:13:20 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.Event]
- | +-BasicFetch [server.haengdong.domain.event.Event.name]
- | +-BasicFetch [server.haengdong.domain.event.Event.password]
- | \-BasicFetch [server.haengdong.domain.event.Event.token]
-
-2024-08-07 16:13:20 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : server.haengdong.domain.event.Event) {
- primaryTableReference : event as e1_0
- }
- }
- }
-
-2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.event.Event
-2024-08-07 16:13:20 - Version select: select id from event where id=?
-2024-08-07 16:13:20 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default)
-2024-08-07 16:13:20 - Update (0): update event set name=?,password=?,token=? where id=?
-2024-08-07 16:13:20 - Delete (0): delete from event where id=?
-2024-08-07 16:13:20 - Created new SQL alias : a1_0
-2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action]
-2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@66ce4b4] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event]
-2024-08-07 16:13:20 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.Action]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event]
- | \-BasicFetch [server.haengdong.domain.action.Action.sequence]
-
-2024-08-07 16:13:20 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : server.haengdong.domain.action.Action) {
- primaryTableReference : action as a1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.action.Action
-2024-08-07 16:13:20 - Version select: select id from action where id=?
-2024-08-07 16:13:20 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default)
-2024-08-07 16:13:20 - Update (0): update action set event_id=?,sequence=? where id=?
-2024-08-07 16:13:20 - Delete (0): delete from action where id=?
-2024-08-07 16:13:20 - Created new SQL alias : es1_0
-2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep]
-2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76ccde41] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event]
-2024-08-07 16:13:20 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.EventStep]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event]
- | +-BasicFetch [server.haengdong.domain.event.EventStep.name]
- | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence]
-
-2024-08-07 16:13:20 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) {
- primaryTableReference : event_step as es1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.event.EventStep
-2024-08-07 16:13:20 - Version select: select id from event_step where id=?
-2024-08-07 16:13:20 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default)
-2024-08-07 16:13:20 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=?
-2024-08-07 16:13:20 - Delete (0): delete from event_step where id=?
-2024-08-07 16:13:20 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
-2024-08-07 16:13:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@3d50a3d9] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4ee80a94]
-2024-08-07 16:13:20 - Checking 0 named HQL queries
-2024-08-07 16:13:20 - Checking 0 named SQL queries
-2024-08-07 16:13:20 -
- drop table if exists action cascade
-2024-08-07 16:13:20 -
- drop table if exists bill_action cascade
-2024-08-07 16:13:20 -
- drop table if exists event cascade
-2024-08-07 16:13:20 -
- drop table if exists event_step cascade
-2024-08-07 16:13:20 -
- drop table if exists member_action cascade
-2024-08-07 16:13:20 -
- create table action (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- primary key (id)
- )
-2024-08-07 16:13:20 -
- create table bill_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- price bigint,
- title varchar(30),
- primary key (id)
- )
-2024-08-07 16:13:20 -
- create table event (
- id bigint generated by default as identity,
- name varchar(255),
- password varchar(255),
- token varchar(255),
- primary key (id)
- )
-2024-08-07 16:13:20 -
- create table event_step (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- name varchar(255),
- primary key (id)
- )
-2024-08-07 16:13:20 -
- create table member_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- member_group_id bigint,
- member_name varchar(255),
- status enum ('IN','OUT'),
- primary key (id)
- )
-2024-08-07 16:13:20 -
- alter table if exists action
- add constraint FKgf0qmub9va1xbe44nehny31yw
- foreign key (event_id)
- references event
-2024-08-07 16:13:20 -
- alter table if exists bill_action
- add constraint FK54tx517tp0ry6453olkply4us
- foreign key (action_id)
- references action
-2024-08-07 16:13:20 -
- alter table if exists event_step
- add constraint FKe3rkib91cvl0x5w9wqkshmn81
- foreign key (event_id)
- references event
-2024-08-07 16:13:20 -
- alter table if exists member_action
- add constraint FK5jna51dn8fs2ir52l4uwn517u
- foreign key (action_id)
- references action
-2024-08-07 16:13:20 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@8aa3013
-2024-08-07 16:13:20 - Registering SessionFactory: a28bc0fa-f66c-4a03-b95a-642397ad3db0 ()
-2024-08-07 16:13:20 - Not binding SessionFactory to JNDI, no JNDI name configured
-2024-08-07 16:13:20 - Instantiated SessionFactory
-2024-08-07 16:13:20 - Initialized JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'haengdongApplication'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'actionService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'billActionRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#0'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpaMappingContext'
-2024-08-07 16:13:20 - Initializing JpaMetamodelMappingContext…
-2024-08-07 16:13:20 - Finished initializing JpaMetamodelMappingContext
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Statistics initialized [enabled=false]
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'repositoryTagsProvider'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider'
-2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository…
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Looking up named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Looking up named query BillAction.findByAction_Event
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query BillAction.findByAction_Event
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Looking up named query BillAction.findByAction_Id
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query BillAction.findByAction_Id
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository.
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#1'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0'
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository…
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Looking up named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Looking up named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Hibernate is in classpath; If applicable, HQL parser will be used.
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.event = :event
-
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:20 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@198cc444: connectionId=rmi://192.168.5.4 3] closing.
-2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@198cc444: connectionId=rmi://192.168.5.4 3] closed.
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:13:20 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.sequence >= :sequence
-
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence)
-2024-08-07 16:13:20 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [GREATER_THAN_OR_EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence`
- :sequence
- <- [GREATER_THAN_OR_EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.findAllByEvent.count
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:13:20 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - HQL : select distinct m.memberName
-from MemberAction m
-where m.action.event = :event
-
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:13:20 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select(distinct)]
- -> [selection]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- <- [selection]
- <- [select(distinct)]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 16:13:20 - Looking up named query MemberAction.findByAction
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query MemberAction.findByAction
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository.
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#3'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0'
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.event.EventRepository…
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Looking up named query Event.findByToken
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query Event.findByToken
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository.
-2024-08-07 16:13:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'billActionService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'actionRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#2'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0'
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.action.ActionRepository…
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query Action.findLastByEvent.count
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - HQL : SELECT a
-FROM Action a
-WHERE a.event = :event
-ORDER BY a.sequence DESC
-LIMIT 1
-
-2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:13:20 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.Action(a)`
- <- [root] - `server.haengdong.domain.action.Action(a)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.Action(a)`
- <- [root] - `server.haengdong.domain.action.Action(a)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.Action(a).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 16:13:20 - Looking up named query Action.findByIdAndEvent
-2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:13:20 - Did not find named query Action.findByIdAndEvent
-2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository.
-2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventTokenProvider'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionFactory'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberGroupIdProvider'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'webMvcConfig'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties'
-2024-08-07 16:13:20 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String
-2024-08-07 16:13:20 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'globalExceptionHandler'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'actionController'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'billActionController'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventController'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'authService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'tokenProvider'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionController'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'adminInterceptor'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'authenticationExtractor'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'taskExecutorBuilder'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'defaultValidator'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:20 - Loaded expression factory via original TCCL
-2024-08-07 16:13:20 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
-2024-08-07 16:13:20 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via user class loader
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 16:13:20 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 16:13:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 16:13:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 16:13:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 16:13:20 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'error'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'beanNameViewResolver'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'conventionErrorViewResolver'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'errorAttributes'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'basicErrorController'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor'
-2024-08-07 16:13:20 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
-2024-08-07 16:13:20 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'endpointObjectMapper'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'welcomePageHandlerMapping'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcConversionService'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcResourceUrlProvider'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'localeResolver'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'themeResolver'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'flashMapManager'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcValidator'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcContentNegotiationManager'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'requestMappingHandlerMapping'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:20 -
- s.h.p.ActionController:
- {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String)
-2024-08-07 16:13:20 -
- s.h.p.BillActionController:
- {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest)
- {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest)
- {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long)
-2024-08-07 16:13:20 -
- s.h.p.EventController:
- {GET [/api/events/{eventId}/actions]}: findActions(String)
- {GET [/api/events/{eventId}/members]}: findAllMembers(String)
- {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest)
- {POST [/api/events]}: saveEvent(EventSaveRequest)
- {GET [/api/events/{eventId}]}: findEvent(String)
- {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest)
-2024-08-07 16:13:20 -
- s.h.p.MemberActionController:
- {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest)
- {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String)
- {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String)
- {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long)
-2024-08-07 16:13:20 -
- o.s.b.a.w.s.e.BasicErrorController:
- { [/error]}: error(HttpServletRequest)
- { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
-2024-08-07 16:13:20 - 16 mappings in 'requestMappingHandlerMapping'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcPatternParser'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcUrlPathHelper'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcPathMatcher'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'viewControllerHandlerMapping'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:20 - Creating shared instance of singleton bean 'beanNameHandlerMapping'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:21 - 'beanNameHandlerMapping' {}
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'routerFunctionMapping'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'messageConverters'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'stringHttpMessageConverter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jacksonObjectMapper'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'parameterNamesModule'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jsonMixinModule'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jsonMixinModuleEntries'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jsonComponentModule'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jacksonGeoModule'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pageModule'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'resourceHandlerMapping'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider'
-2024-08-07 16:13:21 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]}
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'defaultServletHandlerMapping'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'sortResolver'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'sortCustomizer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pageableResolver'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pageableCustomizer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'applicationTaskExecutor'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder'
-2024-08-07 16:13:21 - Initializing ExecutorService 'applicationTaskExecutor'
-2024-08-07 16:13:21 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'handlerFunctionAdapter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mvcUriComponentsContributor'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'handlerExceptionResolver'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 16:13:21 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mvcViewResolver'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'viewNameTranslator'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'defaultViewResolver'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'viewResolver'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'viewResolver'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'applicationAvailability'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'beansEndpoint'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'transactionExecutionListeners'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'transactionManager'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'cachesEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthStatusAggregator'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthEndpointGroups'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthContributorRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pingHealthContributor'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dbHealthContributor'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthEndpoint'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'infoEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'servletWebChildContextFactory'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'managementServletContext'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'conditionsReportEndpoint'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mbeanExporter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'objectNamingStrategy'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mbeanServer'
-2024-08-07 16:13:21 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointObjectNameFactory'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jmxMBeanExporter'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'environmentEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'loggersEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'heapDumpWebEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dumpEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'metricsEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'sbomEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'scheduledTasksEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mappingsEndpoint'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointMediaTypes'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'webEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pathMappedEndpoints'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'meterRegistryCloser'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmGcMetrics'
-2024-08-07 16:13:21 - Using SLF4J as the default logging framework
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmMemoryMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmThreadMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'classLoaderMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmInfoMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmCompilationMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'logbackMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'uptimeMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'processorMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'fileDescriptorMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'diskSpaceMetrics'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'startupTimeMetrics'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'taskSchedulerBuilder'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'tomcatMetricsBinder'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observedAspect'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'restClientSsl'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'restClientBuilderConfigurer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observationRestClientCustomizer'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment'
-2024-08-07 16:13:21 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'lifecycleProcessor'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'offsetResolver'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jdbcTemplate'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jdbcClient'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'transactionTemplate'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'multipartResolver'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment'
-2024-08-07 16:13:21 - Exposing 0 endpoints beneath base path '/actuator'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration'
-2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
-2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties'
-2024-08-07 16:13:21 - Registering beans for JMX exposure on startup
-2024-08-07 16:13:21 - Auto-detecting user-defined JMX MBeans
-2024-08-07 16:13:21 - Bean with name 'dataSource' has been autodetected for JMX exposure
-2024-08-07 16:13:21 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
-2024-08-07 16:13:21 - Starting beans in phase -2147483647
-2024-08-07 16:13:21 - Successfully started bean 'springBootLoggingLifecycle'
-2024-08-07 16:13:21 - Starting beans in phase 2147481599
-2024-08-07 16:13:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP]
-2024-08-07 16:13:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING]
-2024-08-07 16:13:21 - Starting ProtocolHandler ["http-nio-8080"]
-2024-08-07 16:13:21 - Setting state for [Connector["http-nio-8080"]] to [STARTED]
-2024-08-07 16:13:21 - Tomcat started on port 8080 (http) with context path '/'
-2024-08-07 16:13:21 - Successfully started bean 'webServerStartStop'
-2024-08-07 16:13:21 - Starting beans in phase 2147482623
-2024-08-07 16:13:21 - Successfully started bean 'webServerGracefulShutdown'
-2024-08-07 16:13:21 - Starting beans in phase 2147483647
-2024-08-07 16:13:21 -
-
-
-============================
-CONDITIONS EVALUATION REPORT
-============================
-
-
-Positive matches:
------------------
-
- AopAutoConfiguration matched:
- - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
-
- ApplicationAvailabilityAutoConfiguration#applicationAvailability matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- AuditEventsEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- BeansEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- BeansEndpointAutoConfiguration#beansEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CacheMeterBinderProvidersConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition)
-
- CachesEndpointAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- CachesEndpointAutoConfiguration#cachesEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CompositeMeterRegistryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition)
-
- ConditionsReportEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
- - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration.PooledDataSourceConfiguration matched:
- - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition)
- - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceConfiguration.Hikari matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceHealthContributorAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition)
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition)
-
- DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched:
- - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceInitializationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DataSourceJmxConfiguration matched:
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- DataSourceJmxConfiguration.Hikari matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
-
- DataSourcePoolMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition)
-
- DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched:
- - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition)
-
- DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched:
- - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- DiskSpaceHealthContributorAutoConfiguration matched:
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
-
- DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched:
- - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- DispatcherServletAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition)
- - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition)
- - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched:
- - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
-
- EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- EndpointAutoConfiguration#endpointOperationParameterMapper matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- EnvironmentEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- EnvironmentEndpointAutoConfiguration#environmentEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ErrorMvcAutoConfiguration#basicErrorController matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration#errorAttributes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched:
- - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition)
- - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched:
- - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- GenericCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition)
-
- H2ConsoleAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition)
-
- HealthContributorAutoConfiguration#pingHealthContributor matched:
- - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition)
-
- HealthEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HealthEndpointConfiguration#healthContributorRegistry matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched:
- - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition)
-
- HealthEndpointConfiguration#healthEndpointGroups matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthHttpCodeStatusMapper matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HealthEndpointConfiguration#healthStatusAggregator matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HeapDumpWebEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HibernateJpaAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition)
-
- HibernateJpaConfiguration matched:
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- HttpClientObservationsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- HttpEncodingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition)
-
- HttpEncodingAutoConfiguration#characterEncodingFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HttpExchangesEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- HttpMessageConvertersAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition)
-
- HttpMessageConvertersAutoConfiguration#messageConverters matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition)
-
- HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- InfoEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- InfoEndpointAutoConfiguration#infoEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
-
- JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
-
- JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition)
-
- JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched:
- - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JacksonEndpointAutoConfiguration#endpointObjectMapper matched:
- - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition)
- - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched:
- - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition)
- - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched:
- - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JdbcClientAutoConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JdbcTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition)
- - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition)
-
- JdbcTemplateConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition)
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- JmxAutoConfiguration#mbeanExporter matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration#mbeanServer matched:
- - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxAutoConfiguration#objectNamingStrategy matched:
- - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration matched:
- - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition)
-
- JmxEndpointAutoConfiguration#endpointObjectNameFactory matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JmxEndpointAutoConfiguration#jmxMBeanExporter matched:
- - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition)
-
- JpaBaseConfiguration#entityManagerFactory matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#entityManagerFactoryBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#jpaVendorAdapter matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration#transactionManager matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.JpaWebConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched:
- - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JpaRepositoriesAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition)
- - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition)
- - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JtaAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition)
- - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition)
-
- JvmMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#classLoaderMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmCompilationMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmGcMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmInfoMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmMemoryMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- JvmMetricsAutoConfiguration#jvmThreadMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- LifecycleAutoConfiguration#defaultLifecycleProcessor matched:
- - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- LogFileWebEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- LogbackMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition)
- - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- LogbackMetricsAutoConfiguration#logbackMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- LoggersEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- LoggersEndpointAutoConfiguration#loggersEndpoint matched:
- - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition)
- - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ManagementContextAutoConfiguration.SameManagementContextConfiguration matched:
- - Management Port actual port type (SAME) matched required type (OnManagementPortCondition)
-
- MappingsEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- MappingsEndpointAutoConfiguration.ServletWebConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition)
-
- MetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition)
-
- MetricsAutoConfiguration#micrometerClock matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MetricsEndpointAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition)
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- MetricsEndpointAutoConfiguration#metricsEndpoint matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MultipartAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition)
-
- MultipartAutoConfiguration#multipartConfigElement matched:
- - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- MultipartAutoConfiguration#multipartResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- NamedParameterJdbcTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- NoOpCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition)
-
- ObservationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition)
-
- ObservationAutoConfiguration#observationRegistry matched:
- - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched:
- - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.ObservedAspectConfiguration matched:
- - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched:
- - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ObservationAutoConfiguration.OnlyMetricsConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PersistenceExceptionTranslationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition)
-
- PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched:
- - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition)
-
- RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientBuilderConfigurer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientAutoConfiguration#restClientSsl matched:
- - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestClientObservationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition)
-
- RestTemplateAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition)
-
- RestTemplateAutoConfiguration#restTemplateBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- RestTemplateObservationConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition)
- - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition)
-
- SbomEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- SbomEndpointAutoConfiguration#sbomEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ScheduledTasksEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ScheduledTasksObservabilityAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- ServletEndpointManagementContextConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
-
- ServletManagementContextAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletWebServerFactoryAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched:
- - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedTomcat matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition)
- - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- SimpleCacheConfiguration matched:
- - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition)
-
- SimpleMetricsExportAutoConfiguration matched:
- - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SimpleMetricsExportAutoConfiguration#simpleConfig matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringApplicationAdminJmxAutoConfiguration matched:
- - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition)
-
- SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration#pageableCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SpringDataWebAutoConfiguration#sortCustomizer matched:
- - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SqlInitializationAutoConfiguration matched:
- - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition)
- - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition)
-
- SslAutoConfiguration#sslBundleRegistry matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- StartupTimeMetricsListenerAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#diskSpaceMetrics matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#fileDescriptorMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#processorMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SystemMetricsAutoConfiguration#uptimeMetrics matched:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition)
-
- TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration matched:
- - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched:
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskExecutorMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition)
- - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition)
-
- TaskSchedulingAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition)
-
- TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
- - @ConditionalOnThreading found PLATFORM (OnThreadingCondition)
-
- TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ThreadDumpEndpointAutoConfiguration matched:
- - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition)
-
- ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TomcatMetricsAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition)
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
-
- TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched:
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched:
- - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)
-
- TransactionAutoConfiguration.TransactionTemplateConfiguration matched:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition)
-
- TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionManagerCustomizationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition)
-
- TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ValidationAutoConfiguration matched:
- - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition)
- - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition)
-
- ValidationAutoConfiguration#defaultValidator matched:
- - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ValidationAutoConfiguration#methodValidationPostProcessor matched:
- - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
-
- WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#endpointMediaTypes matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#pathMappedEndpoints matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration#webEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration#formContentFilter matched:
- - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition)
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched:
- - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched:
- - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched:
- - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched:
- - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched:
- - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration#webMvcObservationFilter matched:
- - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched:
- - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition)
- - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition)
-
- WebSocketServletAutoConfiguration matched:
- - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
-
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched:
- - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition)
-
- WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched:
- - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
-
-Negative matches:
------------------
-
- ActiveMQAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
-
- AopAutoConfiguration.ClassProxyingConfiguration:
- Did not match:
- - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- AppOpticsMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition)
-
- ArtemisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- AtlasMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition)
-
- AuditAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition)
- Matched:
- - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition)
-
- AuditEventsEndpointAutoConfiguration#auditEventsEndpoint:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition)
-
- AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator:
- Did not match:
- - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator:
- Did not match:
- - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- AvailabilityProbesAutoConfiguration:
- Did not match:
- - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition)
-
- BatchAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition)
-
- BatchObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition)
-
- BraveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition)
-
- Cache2kCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition)
-
- CacheAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition)
-
- CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor:
- Did not match:
- - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition)
-
- CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition)
-
- CacheMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition)
-
- CachesEndpointAutoConfiguration#cachesEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- CaffeineCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition)
-
- CassandraAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- CassandraReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition)
-
- CassandraRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition)
-
- ClientHttpConnectorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- CloudFoundryActuatorAutoConfiguration:
- Did not match:
- - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition)
- - found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition)
-
- CodecsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- CompositeMeterRegistryConfiguration:
- Did not match:
- - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition)
-
- ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ConnectionFactoryHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- ConnectionPoolMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition)
-
- CouchbaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
-
- CouchbaseHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition)
-
- CouchbaseRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition)
-
- DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration:
- Did not match:
- - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition)
-
- DataSourceCheckpointRestoreConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition)
-
- DataSourceConfiguration.Dbcp2:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
-
- DataSourceConfiguration.Generic:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition)
-
- DataSourceConfiguration.OracleUcp:
- Did not match:
- - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition)
-
- DataSourceConfiguration.Tomcat:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition)
-
- DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition)
-
- DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition)
-
- DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition)
-
- DatadogMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition)
-
- DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition)
-
- DynatraceMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition)
-
- ElasticMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition)
-
- ElasticsearchClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition)
-
- ElasticsearchDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition)
-
- ElasticsearchReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition)
-
- ElasticsearchRestClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition)
-
- ElasticsearchRestHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition)
-
- EmbeddedLdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer:
- Did not match:
- - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition)
-
- EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
-
- EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- ErrorWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- FlywayAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
-
- FlywayEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition)
-
- FreeMarkerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition)
-
- GangliaMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition)
-
- GraphQlAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlQueryByExampleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlQuerydslAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition)
-
- GraphQlRSocketAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlReactiveQueryByExampleAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlReactiveQuerydslAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition)
-
- GraphQlWebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebFluxSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphQlWebMvcSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- GraphiteMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition)
-
- GroovyTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition)
-
- GsonAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)
-
- GsonHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition)
-
- HazelcastAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HazelcastJpaDependencyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition)
-
- HealthEndpointReactiveWebExtensionConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
-
- HealthEndpointWebExtensionConfiguration:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- HibernateMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition)
-
- HttpExchangesAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition)
- Matched:
- - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition)
- - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition)
-
- HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration:
- Did not match:
- - did not find reactive web application classes (OnWebApplicationCondition)
- - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
-
- HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration:
- Did not match:
- - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition)
-
- HttpHandlerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- HumioMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition)
-
- HypermediaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition)
-
- InfinispanCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition)
-
- InfluxDbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
-
- InfluxDbHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition)
-
- InfluxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition)
-
- InfoContributorAutoConfiguration#buildInfoContributor:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Matched:
- - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#envInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#gitInfoContributor:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition)
- Matched:
- - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#javaInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#osInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition)
-
- InfoContributorAutoConfiguration#processInfoContributor:
- Did not match:
- - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition)
-
- IntegrationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition)
-
- IntegrationGraphEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition)
-
- JCacheCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition)
-
- JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition)
-
- JdbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition)
-
- JerseyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition)
-
- JerseySameManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- JerseyServerMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition)
-
- JerseyWebEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- JettyMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition)
-
- JmsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition)
-
- JmsHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition)
-
- JmxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition)
-
- JndiConnectionFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition)
-
- JndiDataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
-
- JndiJtaConfiguration:
- Did not match:
- - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition)
- Matched:
- - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition)
-
- JooqAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition)
-
- JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition)
-
- JsonbAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition)
-
- JsonbHttpMessageConvertersConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition)
-
- KafkaAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition)
-
- KafkaMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition)
-
- KairosMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition)
-
- LdapAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition)
-
- LdapHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition)
-
- LdapRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition)
-
- LettuceMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition)
-
- LiquibaseAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition)
-
- LiquibaseEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition)
-
- Log4J2MetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition)
-
- LogFileWebEndpointAutoConfiguration#logFileWebEndpoint:
- Did not match:
- - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition)
-
- MailHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition)
-
- MailSenderAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition)
-
- MailSenderValidatorAutoConfiguration:
- Did not match:
- - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition)
-
- ManagementContextAutoConfiguration.DifferentManagementContextConfiguration:
- Did not match:
- - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition)
-
- ManagementWebSecurityAutoConfiguration:
- Did not match:
- - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition)
- Matched:
- - found 'session' scope (OnWebApplicationCondition)
-
- MappingsEndpointAutoConfiguration.ReactiveWebConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- MessageSourceAutoConfiguration:
- Did not match:
- - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition)
-
- MetricsAspectsAutoConfiguration:
- Did not match:
- - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition)
- Matched:
- - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition)
-
- MicrometerTracingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- MongoAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MongoDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MongoHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition)
-
- MongoMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition)
-
- MongoReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- MongoReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition)
-
- MongoRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition)
-
- MustacheAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition)
-
- Neo4jAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jReactiveDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jReactiveRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- Neo4jRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition)
-
- NettyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition)
-
- NewRelicMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition)
-
- NoOpMeterRegistryConfiguration:
- Did not match:
- - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition)
-
- NoopTracerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- OAuth2AuthorizationServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition)
-
- OAuth2AuthorizationServerJwtAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition)
-
- OAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition)
-
- OAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition)
-
- ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration:
- Did not match:
- - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition)
- - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition)
-
- ObservationAutoConfiguration.MetricsWithTracingConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- ObservationAutoConfiguration.OnlyTracingConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition)
-
- org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition)
-
- OtlpAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition)
-
- OtlpMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition)
-
- ProjectInfoAutoConfiguration#buildProperties:
- Did not match:
- - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition)
-
- ProjectInfoAutoConfiguration#gitProperties:
- Did not match:
- - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition)
-
- PrometheusExemplarsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PrometheusMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition)
-
- PrometheusSimpleclientExemplarsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition)
-
- PrometheusSimpleclientMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition)
-
- PulsarAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition)
-
- PulsarReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition)
-
- QuartzAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)
-
- QuartzEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition)
-
- R2dbcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- R2dbcDataAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition)
-
- R2dbcInitializationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition)
-
- R2dbcObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition)
-
- R2dbcRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition)
-
- R2dbcTransactionManagerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition)
-
- RSocketGraphQlClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition)
-
- RSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
-
- RSocketRequesterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition)
-
- RSocketSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition)
-
- RSocketServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition)
-
- RSocketStrategiesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition)
-
- RabbitAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition)
-
- RabbitHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition)
-
- RabbitMetricsAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition)
-
- ReactiveCloudFoundryActuatorAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- ReactiveElasticsearchClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition)
-
- ReactiveElasticsearchRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition)
-
- ReactiveHealthEndpointConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveManagementContextAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveManagementWebSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)
-
- ReactiveMultipartAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- ReactiveOAuth2ClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveOAuth2ResourceServerAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition)
-
- ReactiveSecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- ReactiveUserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition)
-
- ReactiveWebServerFactoryAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- ReactorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition)
-
- RedisAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition)
-
- RedisCacheConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
-
- RedisHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition)
-
- RedisReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- RedisReactiveHealthContributorAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition)
-
- RedisRepositoriesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition)
-
- RepositoryRestMvcAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition)
-
- Saml2RelyingPartyAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition)
-
- SbomEndpointAutoConfiguration#sbomEndpointWebExtension:
- Did not match:
- - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition)
- Matched:
- - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- SecurityAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition)
-
- SecurityFilterAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition)
-
- SecurityRequestMatchersManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition)
-
- SendGridAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition)
-
- ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition)
-
- ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition)
-
- ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration:
- Did not match:
- - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedJetty:
- Did not match:
- - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition)
-
- ServletWebServerFactoryConfiguration.EmbeddedUndertow:
- Did not match:
- - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition)
-
- SessionAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
-
- SessionsEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition)
-
- ShutdownEndpointAutoConfiguration:
- Did not match:
- - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition)
-
- SignalFxMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition)
-
- StackdriverMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition)
-
- StartupEndpointAutoConfiguration:
- Did not match:
- - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition)
-
- StatsdMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition)
-
- TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition)
-
- TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads:
- Did not match:
- - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition)
-
- TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter:
- Did not match:
- - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)
-
- TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition)
-
- TaskSchedulingConfigurations.TaskSchedulerConfiguration:
- Did not match:
- - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition)
-
- ThymeleafAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition)
-
- TransactionAutoConfiguration#transactionalOperator:
- Did not match:
- - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition)
-
- TransactionAutoConfiguration.AspectJTransactionManagementConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition)
-
- TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition)
-
- UserDetailsServiceAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition)
-
- WavefrontAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition)
-
- WavefrontMetricsExportAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition)
-
- WavefrontTracingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition)
-
- WebClientAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- WebClientObservationConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition)
-
- WebFluxAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition)
-
- WebFluxEndpointManagementContextConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition)
-
- WebFluxObservationAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- WebMvcAutoConfiguration#hiddenHttpMethodFilter:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition)
-
- WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration:
- Did not match:
- - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition)
-
- WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration:
- Did not match:
- - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition)
-
- WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver:
- Did not match:
- - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition)
-
- WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping:
- Did not match:
- - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition)
-
- WebServiceTemplateAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition)
-
- WebServicesAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition)
-
- WebSessionIdResolverAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition)
-
- WebSocketMessagingAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition)
-
- WebSocketReactiveAutoConfiguration:
- Did not match:
- - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition)
-
- WebSocketServletAutoConfiguration.JettyWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition)
-
- WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition)
-
- XADataSourceAutoConfiguration:
- Did not match:
- - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition)
- Matched:
- - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition)
-
- ZipkinAutoConfiguration:
- Did not match:
- - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition)
-
-
-Exclusions:
------------
-
- None
-
-
-Unconditional classes:
-----------------------
-
- org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration
-
- org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration
-
- org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration
-
- org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration
-
- org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration
-
- org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration
-
- org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration
-
-
-
-2024-08-07 16:13:21 - Started HaengdongApplication in 2.524 seconds (process running for 2.77)
-2024-08-07 16:13:21 - Application availability state LivenessState changed to CORRECT
-2024-08-07 16:13:21 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@219dd221: connectionId=rmi://192.168.5.4 4] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@219dd221: connectionId=rmi://192.168.5.4 4] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64213]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64214]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@72822683: connectionId=rmi://192.168.5.4 5] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@72822683: connectionId=rmi://192.168.5.4 5] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4df8c9ee: connectionId=rmi://192.168.5.4 6] closing.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4df8c9ee: connectionId=rmi://192.168.5.4 6] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4b665039: connectionId=rmi://192.168.5.4 7] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4b665039: connectionId=rmi://192.168.5.4 7] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader.
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@55d5fa5d: connectionId=rmi://192.168.5.4 8] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@55d5fa5d: connectionId=rmi://192.168.5.4 8] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String]
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@334adde8: connectionId=rmi://192.168.5.4 10] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@d4b931b: connectionId=rmi://192.168.5.4 9] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@334adde8: connectionId=rmi://192.168.5.4 10] closed.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@d4b931b: connectionId=rmi://192.168.5.4 9] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader.
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = ""
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[]
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[]
-2024-08-07 16:13:21 - Fetching JDBC Connection from DataSource
-2024-08-07 16:13:21 - Initializing Spring DispatcherServlet 'dispatcherServlet'
-2024-08-07 16:13:21 - Initializing Servlet 'dispatcherServlet'
-2024-08-07 16:13:21 - Detected StandardServletMultipartResolver
-2024-08-07 16:13:21 - Detected AcceptHeaderLocaleResolver
-2024-08-07 16:13:21 - Detected FixedThemeResolver
-2024-08-07 16:13:21 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@75ba33b8
-2024-08-07 16:13:21 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@1054864f
-2024-08-07 16:13:21 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
-2024-08-07 16:13:21 - Completed initialization in 1 ms
-2024-08-07 16:13:21 - Fetching JDBC Connection from DataSource
-2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@264a0294: connectionId=rmi://192.168.5.4 11] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@264a0294: connectionId=rmi://192.168.5.4 11] closed.
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82
-2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@3b55932a: connectionId=rmi://192.168.5.4 12] closing.
-2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@3b55932a: connectionId=rmi://192.168.5.4 12] closed.
-2024-08-07 16:13:49 - RMI TCP Connection(2)-192.168.5.4: (port 64211) connection closed
-2024-08-07 16:13:49 - RMI TCP Connection(1)-192.168.5.4: (port 64211) connection closed
-2024-08-07 16:13:49 - RMI TCP Connection(3)-192.168.5.4: (port 64211) connection closed
-2024-08-07 16:13:49 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64214,localport=64211]
-2024-08-07 16:13:49 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64213,localport=64211]
-2024-08-07 16:13:49 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64212,localport=64211]
-2024-08-07 16:13:49 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64212,localport=64211]
-2024-08-07 16:13:49 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64213,localport=64211]
-2024-08-07 16:13:49 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64214,localport=64211]
-2024-08-07 16:13:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:13:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64215]
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: (port 64211) op = 80
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4
-2024-08-07 16:14:06 - RMI TCP Connection(4)-192.168.5.4: (port 64211) connection closed
-2024-08-07 16:14:06 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64215,localport=64211]
-2024-08-07 16:14:06 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64215,localport=64211]
-2024-08-07 16:14:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:14:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:14:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:14:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:15:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:15:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:15:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:15:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:16:08 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1097716332110316034/conf/jaspic-providers.xml]
-2024-08-07 16:16:08 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c/actions", parameters={}
-2024-08-07 16:16:08 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c", parameters={}
-2024-08-07 16:16:08 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:16:08 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:16:08 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:16:08 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:16:08 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:08 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:08 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:16:08 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:16:08 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:16:08 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:16:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:08 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:16:08 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:16:10 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c", parameters={}
-2024-08-07 16:16:10 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c/actions", parameters={}
-2024-08-07 16:16:10 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:16:10 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:16:10 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:16:10 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:16:10 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:10 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:10 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:16:10 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:16:10 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:16:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:10 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:16:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:10 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:16:10 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:16:19 - OPTIONS "/api/events", parameters={}
-2024-08-07 16:16:19 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:16:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:19 - Completed 200 OK
-2024-08-07 16:16:19 - POST "/api/events", parameters={}
-2024-08-07 16:16:19 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:16:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:19 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=ditgh, password=null]]
-2024-08-07 16:16:19 - ValidationMessages not found.
-2024-08-07 16:16:19 - ContributorValidationMessages not found.
-2024-08-07 16:16:19 - org.hibernate.validator.ValidationMessages found.
-2024-08-07 16:16:19 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleMethodArgumentNotValidException(MethodArgumentNotValidException)
-2024-08-07 16:16:19 - Validation failed for argument [0] in public org.springframework.http.ResponseEntity server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]]
-org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]]
- at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:144)
- at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)
- at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:19 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:16:19 - Writing [ErrorResponse[code=R_001, message=password 공백일 수 없습니다]]
-2024-08-07 16:16:19 - Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] ]
-2024-08-07 16:16:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:19 - Completed 400 BAD_REQUEST
-2024-08-07 16:16:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:16:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:16:35 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c", parameters={}
-2024-08-07 16:16:35 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c/actions", parameters={}
-2024-08-07 16:16:35 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:16:35 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:16:35 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:16:35 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:16:35 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:35 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:16:35 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:16:35 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:16:35 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:16:35 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:16:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:16:35 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:16:35 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:16:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:16:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:17:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:17:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:17:22 - OPTIONS "/api/events", parameters={}
-2024-08-07 16:17:22 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:17:22 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:22 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:22 - Completed 200 OK
-2024-08-07 16:17:22 - POST "/api/events", parameters={}
-2024-08-07 16:17:22 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:17:22 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:22 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=백호야 CORS 해결해줘, password=9998]]
-2024-08-07 16:17:22 - Found thread-bound EntityManager [SessionImpl(1341226683)] for JPA transaction
-2024-08-07 16:17:22 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:17:22 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:17:22 - begin
-2024-08-07 16:17:22 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7e2e813e]
-2024-08-07 16:17:22 - Found thread-bound EntityManager [SessionImpl(1341226683)] for JPA transaction
-2024-08-07 16:17:22 - Participating in existing transaction
-2024-08-07 16:17:22 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 16:17:22 - Executing identity-insert immediately
-2024-08-07 16:17:22 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 16:17:22 - Initializer list is empty
-2024-08-07 16:17:22 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@22a9ea5c
-2024-08-07 16:17:22 - Extracted JDBC value [0] - [1]
-2024-08-07 16:17:22 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@6c0d2e83
-2024-08-07 16:17:22 - Initiating transaction commit
-2024-08-07 16:17:22 - Committing JPA transaction on EntityManager [SessionImpl(1341226683)]
-2024-08-07 16:17:22 - committing
-2024-08-07 16:17:22 - Processing flush-time cascades
-2024-08-07 16:17:22 - Dirty checking collections
-2024-08-07 16:17:22 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 16:17:22 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 16:17:22 - Listing entities:
-2024-08-07 16:17:22 - server.haengdong.domain.event.Event{password=9998, name=백호야 CORS 해결해줘, id=1, token=96e98bf4-3743-4b34-b92a-2483b084ea30}
-2024-08-07 16:17:22 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:17:22 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:17:22 - Writing [EventResponse[eventId=96e98bf4-3743-4b34-b92a-2483b084ea30]]
-2024-08-07 16:17:22 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:22 - Completed 200 OK
-2024-08-07 16:17:24 - OPTIONS "/api/events/96e98bf4-3743-4b34-b92a-2483b084ea30", parameters={}
-2024-08-07 16:17:24 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:17:24 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:17:24 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:17:24 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:17:24 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:17:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:24 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:17:24 - OPTIONS "/api/events/96e98bf4-3743-4b34-b92a-2483b084ea30/actions", parameters={}
-2024-08-07 16:17:24 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:17:24 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:17:24 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:17:24 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:17:24 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:17:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:17:24 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:17:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:17:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:18:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:18:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:18:34 - POST "/api/events", parameters={}
-2024-08-07 16:18:34 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:18:34 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:18:34 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=백호 화이팅, password=3333]]
-2024-08-07 16:18:34 - Found thread-bound EntityManager [SessionImpl(66154355)] for JPA transaction
-2024-08-07 16:18:34 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:18:34 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:18:34 - begin
-2024-08-07 16:18:34 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@137f3bfe]
-2024-08-07 16:18:34 - Found thread-bound EntityManager [SessionImpl(66154355)] for JPA transaction
-2024-08-07 16:18:34 - Participating in existing transaction
-2024-08-07 16:18:34 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 16:18:34 - Executing identity-insert immediately
-2024-08-07 16:18:34 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 16:18:34 - Initializer list is empty
-2024-08-07 16:18:34 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@450e621b
-2024-08-07 16:18:34 - Extracted JDBC value [0] - [2]
-2024-08-07 16:18:34 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@74179cf8
-2024-08-07 16:18:34 - Initiating transaction commit
-2024-08-07 16:18:34 - Committing JPA transaction on EntityManager [SessionImpl(66154355)]
-2024-08-07 16:18:34 - committing
-2024-08-07 16:18:34 - Processing flush-time cascades
-2024-08-07 16:18:34 - Dirty checking collections
-2024-08-07 16:18:34 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 16:18:34 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 16:18:34 - Listing entities:
-2024-08-07 16:18:34 - server.haengdong.domain.event.Event{password=3333, name=백호 화이팅, id=2, token=460861ab-c18e-4be4-9094-779f5a87bd20}
-2024-08-07 16:18:34 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:18:34 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:18:34 - Writing [EventResponse[eventId=460861ab-c18e-4be4-9094-779f5a87bd20]]
-2024-08-07 16:18:34 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:18:34 - Completed 200 OK
-2024-08-07 16:18:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:18:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:19:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:19:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:19:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:19:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:20:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:20:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:20:22 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:20:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:20:22 - POST "/api/events", parameters={}
-2024-08-07 16:20:22 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:20:22 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:20:22 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=null]]
-2024-08-07 16:20:22 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleMethodArgumentNotValidException(MethodArgumentNotValidException)
-2024-08-07 16:20:22 - Validation failed for argument [0] in public org.springframework.http.ResponseEntity server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]]
-org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]]
- at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:144)
- at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)
- at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:20:22 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:20:22 - Writing [ErrorResponse[code=R_001, message=password 공백일 수 없습니다]]
-2024-08-07 16:20:22 - Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] ]
-2024-08-07 16:20:22 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:20:22 - Completed 400 BAD_REQUEST
-2024-08-07 16:20:34 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:20:34 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:20:34 - POST "/api/events", parameters={}
-2024-08-07 16:20:34 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:20:34 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:20:34 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]]
-2024-08-07 16:20:34 - Found thread-bound EntityManager [SessionImpl(78012176)] for JPA transaction
-2024-08-07 16:20:34 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:20:34 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:20:34 - begin
-2024-08-07 16:20:34 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2a452096]
-2024-08-07 16:20:34 - Initiating transaction rollback
-2024-08-07 16:20:34 - Rolling back JPA transaction on EntityManager [SessionImpl(78012176)]
-2024-08-07 16:20:34 - rolling back
-2024-08-07 16:20:34 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:20:34 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException)
-2024-08-07 16:20:34 - 비밀번호는 4자리 숫자만 가능합니다.
-server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.
- at server.haengdong.domain.event.Event.validatePassword(Event.java:61)
- at server.haengdong.domain.event.Event.(Event.java:37)
- at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8)
- at server.haengdong.application.EventService.saveEvent(EventService.java:40)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)
- at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392)
- at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
- at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent()
- at server.haengdong.presentation.EventController.saveEvent(EventController.java:37)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:20:34 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:20:34 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]]
-2024-08-07 16:20:34 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.]
-2024-08-07 16:20:34 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:20:34 - Completed 400 BAD_REQUEST
-2024-08-07 16:20:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:20:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:21:11 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:11 - POST "/api/events", parameters={}
-2024-08-07 16:21:11 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:11 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:21:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:21:11 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]]
-2024-08-07 16:21:11 - Found thread-bound EntityManager [SessionImpl(198571365)] for JPA transaction
-2024-08-07 16:21:11 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:21:11 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:21:11 - begin
-2024-08-07 16:21:11 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@42d0805b]
-2024-08-07 16:21:11 - Initiating transaction rollback
-2024-08-07 16:21:11 - Rolling back JPA transaction on EntityManager [SessionImpl(198571365)]
-2024-08-07 16:21:11 - rolling back
-2024-08-07 16:21:11 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:21:11 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException)
-2024-08-07 16:21:11 - 비밀번호는 4자리 숫자만 가능합니다.
-server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.
- at server.haengdong.domain.event.Event.validatePassword(Event.java:61)
- at server.haengdong.domain.event.Event.(Event.java:37)
- at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8)
- at server.haengdong.application.EventService.saveEvent(EventService.java:40)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)
- at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392)
- at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
- at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent()
- at server.haengdong.presentation.EventController.saveEvent(EventController.java:37)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:11 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:21:11 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]]
-2024-08-07 16:21:11 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.]
-2024-08-07 16:21:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:21:11 - Completed 400 BAD_REQUEST
-2024-08-07 16:21:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:21:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:21:37 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:37 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:37 - GET "/api/events", parameters={}
-2024-08-07 16:21:37 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException()
-2024-08-07 16:21:37 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:21:37 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]]
-2024-08-07 16:21:37 - Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' is not supported]
-2024-08-07 16:21:37 - Completed 400 BAD_REQUEST
-2024-08-07 16:21:40 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:40 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:40 - POST "/api/events", parameters={}
-2024-08-07 16:21:40 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:21:40 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:21:40 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]]
-2024-08-07 16:21:40 - Found thread-bound EntityManager [SessionImpl(1223445385)] for JPA transaction
-2024-08-07 16:21:40 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:21:40 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:21:40 - begin
-2024-08-07 16:21:40 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7ab1821b]
-2024-08-07 16:21:40 - Initiating transaction rollback
-2024-08-07 16:21:40 - Rolling back JPA transaction on EntityManager [SessionImpl(1223445385)]
-2024-08-07 16:21:40 - rolling back
-2024-08-07 16:21:40 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:21:40 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException)
-2024-08-07 16:21:40 - 비밀번호는 4자리 숫자만 가능합니다.
-server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.
- at server.haengdong.domain.event.Event.validatePassword(Event.java:61)
- at server.haengdong.domain.event.Event.(Event.java:37)
- at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8)
- at server.haengdong.application.EventService.saveEvent(EventService.java:40)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)
- at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392)
- at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
- at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent()
- at server.haengdong.presentation.EventController.saveEvent(EventController.java:37)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:40 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:21:40 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]]
-2024-08-07 16:21:40 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.]
-2024-08-07 16:21:40 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:21:40 - Completed 400 BAD_REQUEST
-2024-08-07 16:21:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:21:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:21:53 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:53 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:53 - POST "/api/events", parameters={}
-2024-08-07 16:21:53 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:21:53 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:21:53 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]]
-2024-08-07 16:21:53 - Found thread-bound EntityManager [SessionImpl(782871237)] for JPA transaction
-2024-08-07 16:21:53 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:21:53 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:21:53 - begin
-2024-08-07 16:21:53 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@18cb5987]
-2024-08-07 16:21:53 - Initiating transaction rollback
-2024-08-07 16:21:53 - Rolling back JPA transaction on EntityManager [SessionImpl(782871237)]
-2024-08-07 16:21:53 - rolling back
-2024-08-07 16:21:53 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:21:53 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException)
-2024-08-07 16:21:53 - 비밀번호는 4자리 숫자만 가능합니다.
-server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.
- at server.haengdong.domain.event.Event.validatePassword(Event.java:61)
- at server.haengdong.domain.event.Event.(Event.java:37)
- at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8)
- at server.haengdong.application.EventService.saveEvent(EventService.java:40)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)
- at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392)
- at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
- at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent()
- at server.haengdong.presentation.EventController.saveEvent(EventController.java:37)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:21:53 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:21:53 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]]
-2024-08-07 16:21:53 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.]
-2024-08-07 16:21:53 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:21:53 - Completed 400 BAD_REQUEST
-2024-08-07 16:22:01 - Error parsing HTTP request header
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:22:01 - Error state [CLOSE_CONNECTION_NOW] reported while processing request
-java.io.EOFException: null
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293)
- at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181)
- at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789)
- at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:22:01 - POST "/api/events", parameters={}
-2024-08-07 16:22:01 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:22:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:22:01 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]]
-2024-08-07 16:22:01 - Found thread-bound EntityManager [SessionImpl(2041182061)] for JPA transaction
-2024-08-07 16:22:01 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:22:01 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:22:01 - begin
-2024-08-07 16:22:01 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@50bafee6]
-2024-08-07 16:22:01 - Found thread-bound EntityManager [SessionImpl(2041182061)] for JPA transaction
-2024-08-07 16:22:01 - Participating in existing transaction
-2024-08-07 16:22:01 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 16:22:01 - Executing identity-insert immediately
-2024-08-07 16:22:01 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 16:22:01 - Initializer list is empty
-2024-08-07 16:22:01 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@48aff115
-2024-08-07 16:22:01 - Extracted JDBC value [0] - [3]
-2024-08-07 16:22:01 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@1d5c1e80
-2024-08-07 16:22:01 - Initiating transaction commit
-2024-08-07 16:22:01 - Committing JPA transaction on EntityManager [SessionImpl(2041182061)]
-2024-08-07 16:22:01 - committing
-2024-08-07 16:22:01 - Processing flush-time cascades
-2024-08-07 16:22:01 - Dirty checking collections
-2024-08-07 16:22:01 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 16:22:01 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 16:22:01 - Listing entities:
-2024-08-07 16:22:01 - server.haengdong.domain.event.Event{password=1234, name=1234, id=3, token=a4770df6-9e69-4f92-885b-b7165bd03e72}
-2024-08-07 16:22:01 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:22:01 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:22:01 - Writing [EventResponse[eventId=a4770df6-9e69-4f92-885b-b7165bd03e72]]
-2024-08-07 16:22:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:22:01 - Completed 200 OK
-2024-08-07 16:22:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:22:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:22:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:22:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:23:14 - POST "/api/events", parameters={}
-2024-08-07 16:23:14 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest)
-2024-08-07 16:23:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:14 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=소하야 고마워, password=4444]]
-2024-08-07 16:23:14 - Found thread-bound EntityManager [SessionImpl(1428328362)] for JPA transaction
-2024-08-07 16:23:14 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT
-2024-08-07 16:23:14 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false
-2024-08-07 16:23:14 - begin
-2024-08-07 16:23:14 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7e7c77b0]
-2024-08-07 16:23:14 - Found thread-bound EntityManager [SessionImpl(1428328362)] for JPA transaction
-2024-08-07 16:23:14 - Participating in existing transaction
-2024-08-07 16:23:14 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier
-2024-08-07 16:23:14 - Executing identity-insert immediately
-2024-08-07 16:23:14 -
- insert
- into
- event
- (name, password, token, id)
- values
- (?, ?, ?, default)
-2024-08-07 16:23:14 - Initializer list is empty
-2024-08-07 16:23:14 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@39eddc10
-2024-08-07 16:23:14 - Extracted JDBC value [0] - [4]
-2024-08-07 16:23:14 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@59b01cc6
-2024-08-07 16:23:14 - Initiating transaction commit
-2024-08-07 16:23:14 - Committing JPA transaction on EntityManager [SessionImpl(1428328362)]
-2024-08-07 16:23:14 - committing
-2024-08-07 16:23:14 - Processing flush-time cascades
-2024-08-07 16:23:14 - Dirty checking collections
-2024-08-07 16:23:14 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
-2024-08-07 16:23:14 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
-2024-08-07 16:23:14 - Listing entities:
-2024-08-07 16:23:14 - server.haengdong.domain.event.Event{password=4444, name=소하야 고마워, id=4, token=419797bc-2a5f-441f-9686-ee3e91d4ebbb}
-2024-08-07 16:23:14 - Not closing pre-bound JPA EntityManager after transaction
-2024-08-07 16:23:14 - Using 'application/json', given [*/*] and supported [application/json, application/*+json]
-2024-08-07 16:23:14 - Writing [EventResponse[eventId=419797bc-2a5f-441f-9686-ee3e91d4ebbb]]
-2024-08-07 16:23:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:14 - Completed 200 OK
-2024-08-07 16:23:15 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={}
-2024-08-07 16:23:15 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:23:15 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:23:15 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:23:15 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:23:15 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:23:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:15 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:23:15 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={}
-2024-08-07 16:23:15 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:23:15 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:23:15 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:23:15 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:23:15 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:23:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:15 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:23:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:23:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:23:37 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={}
-2024-08-07 16:23:37 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={}
-2024-08-07 16:23:37 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:23:37 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:23:37 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:23:37 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:23:37 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:23:37 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:23:37 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:23:37 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:23:37 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:23:37 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:23:37 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:37 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:37 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:37 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:23:37 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:23:37 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:23:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:23:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:24:09 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={}
-2024-08-07 16:24:09 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={}
-2024-08-07 16:24:09 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:24:09 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:24:09 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:24:09 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:24:09 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:24:09 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:24:09 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:24:09 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:24:09 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:24:09 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:24:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:09 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:24:09 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:24:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:24:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:24:31 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={}
-2024-08-07 16:24:31 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={}
-2024-08-07 16:24:31 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:24:31 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:24:31 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:24:31 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:24:31 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:24:31 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:24:31 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:24:31 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:24:31 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:24:31 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:24:31 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:31 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:31 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:31 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:31 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:24:31 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:24:41 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72/actions", parameters={}
-2024-08-07 16:24:41 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72", parameters={}
-2024-08-07 16:24:41 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:24:41 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:24:41 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:24:41 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:24:41 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:24:41 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:24:41 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:24:41 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:24:41 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:24:41 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:24:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:24:41 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:24:41 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:24:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:24:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:25:06 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72", parameters={}
-2024-08-07 16:25:06 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72/actions", parameters={}
-2024-08-07 16:25:06 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:25:06 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:25:06 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:25:06 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:25:06 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:25:06 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:25:06 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:25:06 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:25:06 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:25:06 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:25:06 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:06 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:06 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:06 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:06 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:25:06 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:25:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:25:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:25:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:25:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.
-2024-08-07 16:25:59 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72/actions", parameters={}
-2024-08-07 16:25:59 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72", parameters={}
-2024-08-07 16:25:59 - Mapped to server.haengdong.presentation.EventController#findEvent(String)
-2024-08-07 16:25:59 - Mapped to server.haengdong.presentation.EventController#findActions(String)
-2024-08-07 16:25:59 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:25:59 - Failed to complete request: server.haengdong.exception.AuthenticationException
-2024-08-07 16:25:59 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:25:59 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause
-server.haengdong.exception.AuthenticationException: null
- at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13)
- at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37)
- at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31)
- at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
- at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
- at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
- at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
- at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
- at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
- at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
- at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
- at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
- at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
- at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
- at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
- at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
- at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
- at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
- at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
- at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
- at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
- at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:25:59 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:25:59 - "ERROR" dispatch for OPTIONS "/error", parameters={}
-2024-08-07 16:25:59 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:25:59 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
-2024-08-07 16:25:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor
-2024-08-07 16:25:59 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:25:59 - Exiting from "ERROR" dispatch, status 500
-2024-08-07 16:26:05 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC
-2024-08-07 16:26:05 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:13:19 KST 2024
-2024-08-07 16:26:05 - Stopping beans in phase 2147483647
-2024-08-07 16:26:05 - Bean 'applicationTaskExecutor' completed its stop procedure
-2024-08-07 16:26:05 - Stopping beans in phase 2147482623
-2024-08-07 16:26:05 - Bean 'webServerGracefulShutdown' completed its stop procedure
-2024-08-07 16:26:05 - Stopping beans in phase 2147481599
-2024-08-07 16:26:05 - Bean 'webServerStartStop' completed its stop procedure
-2024-08-07 16:26:05 - Stopping beans in phase -2147483647
-2024-08-07 16:26:05 - Bean 'springBootLoggingLifecycle' completed its stop procedure
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain
-2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain
-2024-08-07 16:26:05 - Unregistering JMX-exposed beans on shutdown
-2024-08-07 16:26:05 - Unregistering JMX-exposed beans
-2024-08-07 16:26:05 - Shutting down ExecutorService 'applicationTaskExecutor'
-2024-08-07 16:26:05 - Closing JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 16:26:05 - HHH000031: Closing
-2024-08-07 16:26:05 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3bef3ff3] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4ee80a94]
-2024-08-07 16:26:05 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries
-2024-08-07 16:26:05 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries
-2024-08-07 16:26:05 - HikariPool-1 - Shutdown initiated...
-2024-08-07 16:26:05 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted)
-2024-08-07 16:26:05 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0)
-2024-08-07 16:26:05 - HikariPool-1 - Shutdown completed.
-2024-08-07 16:26:05 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed
-2024-08-07 16:26:07 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
-2024-08-07 16:26:07 - HV000001: Hibernate Validator 8.0.1.Final
-2024-08-07 16:26:07 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 16:26:07 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 16:26:07 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 16:26:07 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 16:26:07 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 16:26:07 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 16:26:07 - Loaded expression factory via original TCCL
-2024-08-07 16:26:07 - Starting HaengdongApplication using Java 17.0.12 with PID 60533 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong)
-2024-08-07 16:26:07 - Running with Spring Boot v3.3.1, Spring v6.1.10
-2024-08-07 16:26:07 - No active profile set, falling back to 1 default profile: "default"
-2024-08-07 16:26:07 - Loading source class server.haengdong.HaengdongApplication
-2024-08-07 16:26:07 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
-2024-08-07 16:26:07 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class]
-2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class]
-2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class]
-2024-08-07 16:26:07 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
-2024-08-07 16:26:07 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled.
-2024-08-07 16:26:07 - Scanning for JPA repositories in packages server.haengdong.
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class]
-2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class]
-2024-08-07 16:26:07 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces.
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'methodValidationPostProcessor'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
-2024-08-07 16:26:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 16:26:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'transactionAttributeSource'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'transactionInterceptor'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'observationRegistryPostProcessor'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
-2024-08-07 16:26:07 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@67f9cb52]
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
-2024-08-07 16:26:07 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]
-org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
- at org.apache.tomcat.jni.Library.(Library.java:91)
- at org.apache.tomcat.jni.Library.initialize(Library.java:147)
- at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209)
- at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:138)
- at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'sslBundleRegistry'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'fileWatcher'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'errorPageCustomizer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dispatcherServletRegistration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dispatcherServlet'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'multipartConfigElement'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 16:26:07 - Class not found so assuming code is running on a pre-Java 19 JVM
-java.lang.ClassNotFoundException: java.lang.WrongThreadException
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre19Compat.(Jre19Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:07 - Class not found so assuming code is running on a pre-Java 21 JVM
-java.lang.ClassNotFoundException: java.lang.Thread$Builder
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre21Compat.(Jre21Compat.java:43)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:07 - Class not found so assuming code is running on a pre-Java 22 JVM
-java.lang.ClassNotFoundException: java.text.ListFormat
- at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
- at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
- at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
- at java.base/java.lang.Class.forName0(Native Method)
- at java.base/java.lang.Class.forName(Class.java:375)
- at org.apache.tomcat.util.compat.Jre22Compat.(Jre22Compat.java:37)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:07 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]]
-2024-08-07 16:26:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 16:26:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar
-2024-08-07 16:26:07 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
-2024-08-07 16:26:07 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]]
-2024-08-07 16:26:07 - Tomcat initialized with port 8080 (http)
-2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING]
-2024-08-07 16:26:07 - Initializing ProtocolHandler ["http-nio-8080"]
-2024-08-07 16:26:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Starting service [Tomcat]
-2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Starting Servlet engine: [Apache Tomcat/10.1.25]
-2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Starting this Loader
-2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:26:07 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
-2024-08-07 16:26:07 - Configured a manager of class [org.apache.catalina.session.StandardManager]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [STARTED]
-2024-08-07 16:26:07 - Initializing Spring embedded WebApplicationContext
-2024-08-07 16:26:07 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
-2024-08-07 16:26:07 - Root WebApplicationContext: initialization completed in 620 ms
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'webMvcObservationFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'observationRegistry'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'propertiesObservationFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'defaultMeterObservationHandler'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'simpleMeterRegistry'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'simpleConfig'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'micrometerClock'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'propertiesMeterFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'h2Console'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dataSource'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'jdbcConnectionDetails'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails'
-2024-08-07 16:26:07 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
-2024-08-07 16:26:07 - HikariPool-1 - configuration:
-2024-08-07 16:26:07 - allowPoolSuspension.............false
-2024-08-07 16:26:07 - autoCommit......................true
-2024-08-07 16:26:07 - catalog.........................none
-2024-08-07 16:26:07 - connectionInitSql...............none
-2024-08-07 16:26:07 - connectionTestQuery.............none
-2024-08-07 16:26:07 - connectionTimeout...............30000
-2024-08-07 16:26:07 - dataSource......................none
-2024-08-07 16:26:07 - dataSourceClassName.............none
-2024-08-07 16:26:07 - dataSourceJNDI..................none
-2024-08-07 16:26:07 - dataSourceProperties............{password=}
-2024-08-07 16:26:07 - driverClassName................."org.h2.Driver"
-2024-08-07 16:26:07 - exceptionOverrideClassName......none
-2024-08-07 16:26:07 - healthCheckProperties...........{}
-2024-08-07 16:26:07 - healthCheckRegistry.............none
-2024-08-07 16:26:07 - idleTimeout.....................600000
-2024-08-07 16:26:07 - initializationFailTimeout.......1
-2024-08-07 16:26:07 - isolateInternalQueries..........false
-2024-08-07 16:26:07 - jdbcUrl.........................jdbc:h2:mem:database
-2024-08-07 16:26:07 - keepaliveTime...................0
-2024-08-07 16:26:07 - leakDetectionThreshold..........0
-2024-08-07 16:26:07 - maxLifetime.....................1800000
-2024-08-07 16:26:07 - maximumPoolSize.................10
-2024-08-07 16:26:07 - metricRegistry..................none
-2024-08-07 16:26:07 - metricsTrackerFactory...........none
-2024-08-07 16:26:07 - minimumIdle.....................10
-2024-08-07 16:26:07 - password........................
-2024-08-07 16:26:07 - poolName........................"HikariPool-1"
-2024-08-07 16:26:07 - readOnly........................false
-2024-08-07 16:26:07 - registerMbeans..................false
-2024-08-07 16:26:07 - scheduledExecutor...............none
-2024-08-07 16:26:07 - schema..........................none
-2024-08-07 16:26:07 - threadFactory...................internal
-2024-08-07 16:26:07 - transactionIsolation............default
-2024-08-07 16:26:07 - username........................"sa"
-2024-08-07 16:26:07 - validationTimeout...............5000
-2024-08-07 16:26:07 - HikariPool-1 - Starting...
-2024-08-07 16:26:07 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:07 - HikariPool-1 - Start completed.
-2024-08-07 16:26:07 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletEndpointRegistrar'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletEndpointDiscoverer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'webEndpointPathMapper'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration'
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64293]
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'requestContextFilter'
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'formContentFilter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'characterEncodingFilter'
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 84
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:26:07 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:26:07 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
-2024-08-07 16:26:07 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*]
-2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:07 - [javax.management.remote.rmi.RMIConnectionImpl@564ee06a: connectionId=rmi://192.168.5.4 1] closing.
-2024-08-07 16:26:07 - [javax.management.remote.rmi.RMIConnectionImpl@564ee06a: connectionId=rmi://192.168.5.4 1] closed.
-2024-08-07 16:26:07 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED]
-2024-08-07 16:26:07 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
-2024-08-07 16:26:07 - Filter 'requestContextFilter' configured for use
-2024-08-07 16:26:07 - Filter 'webMvcObservationFilter' configured for use
-2024-08-07 16:26:07 - Filter 'characterEncodingFilter' configured for use
-2024-08-07 16:26:07 - Filter 'formContentFilter' configured for use
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING]
-2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED]
-2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING]
-2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [STARTING_PREP]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [STARTING]
-2024-08-07 16:26:07 - Registered host [localhost]
-2024-08-07 16:26:07 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 16:26:07 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
-2024-08-07 16:26:07 - Register Context [] for service [StandardService[Tomcat]]
-2024-08-07 16:26:07 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
-2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [STARTED]
-2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [STARTED]
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'entityManagerFactory'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'jpaVendorAdapter'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter'
-2024-08-07 16:26:07 - Creating shared instance of singleton bean 'persistenceManagedTypes'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder'
-2024-08-07 16:26:07 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes'
-2024-08-07 16:26:07 - Building JPA container EntityManagerFactory for persistence unit 'default'
-2024-08-07 16:26:07 - PersistenceUnitInfo [
- name: default
- persistence provider classname: null
- classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
- excludeUnlistedClasses: true
- JTA datasource: null
- Non JTA datasource: HikariDataSource (HikariPool-1)
- Transaction type: RESOURCE_LOCAL
- PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/
- Shared Cache Mode: UNSPECIFIED
- Validation Mode: AUTO
- Jar files URLs []
- Managed classes names [
- server.haengdong.domain.action.Action
- server.haengdong.domain.action.BillAction
- server.haengdong.domain.action.MemberAction
- server.haengdong.domain.event.Event
- server.haengdong.domain.event.EventStep]
- Mapping files names []
- Properties []
-2024-08-07 16:26:07 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator].
-2024-08-07 16:26:07 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator].
-2024-08-07 16:26:07 - HHH000412: Hibernate ORM core version 6.5.2.Final
-2024-08-07 16:26:07 - HHH000206: 'hibernate.properties' not found
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
-2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator]
-2024-08-07 16:26:07 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered
-2024-08-07 16:26:07 - HHH000026: Second-level cache disabled
-2024-08-07 16:26:07 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0)
-2024-08-07 16:26:07 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:07 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 16:26:07 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 16:26:07 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef
-2024-08-07 16:26:07 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 16:26:07 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@290807e5
-2024-08-07 16:26:07 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 16:26:07 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@60bc308b
-2024-08-07 16:26:07 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@56499781
-2024-08-07 16:26:07 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@56499781
-2024-08-07 16:26:07 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 16:26:07 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 16:26:07 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@43f99817
-2024-08-07 16:26:07 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@2a2798a2
-2024-08-07 16:26:07 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@2a2798a2
-2024-08-07 16:26:07 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@2a2798a2
-2024-08-07 16:26:07 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 16:26:07 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@2b9ecd05
-2024-08-07 16:26:07 - Adding type registration image -> org.hibernate.type.BasicTypeReference@31f1b268
-2024-08-07 16:26:07 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 16:26:07 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3ec7ad61
-2024-08-07 16:26:07 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2833c093
-2024-08-07 16:26:07 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@7598d675
-2024-08-07 16:26:07 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 16:26:07 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 16:26:07 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4946485c
-2024-08-07 16:26:07 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 16:26:07 - Adding type registration int -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 16:26:07 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4ae958b0
-2024-08-07 16:26:07 - Adding type registration long -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 16:26:07 - Adding type registration long -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 16:26:07 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@7c682e26
-2024-08-07 16:26:07 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4ff074a0
-2024-08-07 16:26:07 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4ff074a0
-2024-08-07 16:26:07 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@4ff074a0
-2024-08-07 16:26:07 - Adding type registration double -> org.hibernate.type.BasicTypeReference@340fc1aa
-2024-08-07 16:26:07 - Adding type registration double -> org.hibernate.type.BasicTypeReference@340fc1aa
-2024-08-07 16:26:07 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@340fc1aa
-2024-08-07 16:26:07 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@34a33343
-2024-08-07 16:26:07 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@34a33343
-2024-08-07 16:26:07 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@98722ef
-2024-08-07 16:26:07 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@98722ef
-2024-08-07 16:26:07 - Adding type registration character -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 16:26:07 - Adding type registration char -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 16:26:07 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@459e120b
-2024-08-07 16:26:07 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@fd69983
-2024-08-07 16:26:07 - Adding type registration string -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 16:26:07 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@22429a11
-2024-08-07 16:26:07 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@126254ec
-2024-08-07 16:26:07 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 16:26:07 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 16:26:07 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@275902e1
-2024-08-07 16:26:07 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1c788d08
-2024-08-07 16:26:07 - Adding type registration text -> org.hibernate.type.BasicTypeReference@2adc1e84
-2024-08-07 16:26:07 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2a99fa07
-2024-08-07 16:26:07 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 16:26:07 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@45b8bbbf
-2024-08-07 16:26:07 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1df06ecd
-2024-08-07 16:26:07 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1df06ecd
-2024-08-07 16:26:07 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@57927bc9
-2024-08-07 16:26:07 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@323efafe
-2024-08-07 16:26:07 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@32dbca45
-2024-08-07 16:26:07 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2cc34cd5
-2024-08-07 16:26:07 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@684b26b7
-2024-08-07 16:26:07 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2de7c84a
-2024-08-07 16:26:07 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 16:26:07 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4182a651
-2024-08-07 16:26:07 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 16:26:07 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7791ff50
-2024-08-07 16:26:07 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 16:26:07 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@46de118b
-2024-08-07 16:26:07 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 16:26:07 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@55682482
-2024-08-07 16:26:07 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 16:26:07 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@10cb050
-2024-08-07 16:26:07 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@799fb45e
-2024-08-07 16:26:07 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4f7ba0af
-2024-08-07 16:26:07 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 16:26:07 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@5b23c1f6
-2024-08-07 16:26:07 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@3f4964f2
-2024-08-07 16:26:07 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3bf01a01
-2024-08-07 16:26:07 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@299cab08
-2024-08-07 16:26:07 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 16:26:07 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6c75e3bc
-2024-08-07 16:26:07 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@186f7434
-2024-08-07 16:26:07 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2374452a
-2024-08-07 16:26:07 - Adding type registration date -> org.hibernate.type.BasicTypeReference@6ffc6ea7
-2024-08-07 16:26:07 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@6ffc6ea7
-2024-08-07 16:26:07 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2c5708e7
-2024-08-07 16:26:07 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2c5708e7
-2024-08-07 16:26:07 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@4ffa078d
-2024-08-07 16:26:07 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@4ffa078d
-2024-08-07 16:26:07 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@4ffa078d
-2024-08-07 16:26:07 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4e26564d
-2024-08-07 16:26:07 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4e26564d
-2024-08-07 16:26:07 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4e26564d
-2024-08-07 16:26:07 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@42238078
-2024-08-07 16:26:07 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@5627b8eb
-2024-08-07 16:26:07 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@49fe0bcd
-2024-08-07 16:26:07 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@49fe0bcd
-2024-08-07 16:26:07 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@3516b881
-2024-08-07 16:26:07 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@3516b881
-2024-08-07 16:26:07 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@3516b881
-2024-08-07 16:26:07 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@6be8ce1b
-2024-08-07 16:26:07 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@e3c36d
-2024-08-07 16:26:07 - Adding type registration class -> org.hibernate.type.BasicTypeReference@397a10df
-2024-08-07 16:26:07 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@397a10df
-2024-08-07 16:26:07 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@39a865c1
-2024-08-07 16:26:07 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@39a865c1
-2024-08-07 16:26:07 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@39a865c1
-2024-08-07 16:26:07 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@141dfcf9
-2024-08-07 16:26:07 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@141dfcf9
-2024-08-07 16:26:07 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@a7bbdbc
-2024-08-07 16:26:07 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@a7bbdbc
-2024-08-07 16:26:07 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@63eea8c4
-2024-08-07 16:26:07 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@63eea8c4
-2024-08-07 16:26:07 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@19924f15
-2024-08-07 16:26:07 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@19924f15
-2024-08-07 16:26:07 - Adding type registration url -> org.hibernate.type.BasicTypeReference@621392ea
-2024-08-07 16:26:07 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@621392ea
-2024-08-07 16:26:07 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@35524549
-2024-08-07 16:26:07 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@23ec63af
-2024-08-07 16:26:07 - Adding type registration object -> org.hibernate.type.JavaObjectType@2932e15f
-2024-08-07 16:26:07 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2932e15f
-2024-08-07 16:26:07 - Adding type registration null -> org.hibernate.type.NullType@2a6dbb7c
-2024-08-07 16:26:07 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5178345d
-2024-08-07 16:26:07 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@7b2d58e6
-2024-08-07 16:26:07 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@708f7386
-2024-08-07 16:26:07 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@377e90b0
-2024-08-07 16:26:07 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@27b490de
-2024-08-07 16:26:07 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@36cf16a6
-2024-08-07 16:26:07 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3dd750ba
-2024-08-07 16:26:07 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@7eefaca0
-2024-08-07 16:26:07 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab] into BootstrapContext; was [null]
-2024-08-07 16:26:07 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab) [was null]
-2024-08-07 16:26:07 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@69c1ea07] into BootstrapContext; was [null]
-2024-08-07 16:26:07 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5cbe72b9] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@27fc0217]
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - No LoadTimeWeaver setup: ignoring JPA class transformer
-2024-08-07 16:26:08 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab]
-2024-08-07 16:26:08 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab]
-2024-08-07 16:26:08 - Database ->
- name : H2
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 16:26:08 - Driver ->
- name : H2 JDBC Driver
- version : 2.2.224 (2023-09-17)
- major : 2
- minor : 2
-2024-08-07 16:26:08 - JDBC version : 4.2
-2024-08-07 16:26:08 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224
-2024-08-07 16:26:08 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case
-2024-08-07 16:26:08 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor)
-2024-08-07 16:26:08 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor)
-2024-08-07 16:26:08 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor)
-2024-08-07 16:26:08 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 16:26:08 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
-2024-08-07 16:26:08 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor)
-2024-08-07 16:26:08 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015)
-2024-08-07 16:26:08 - Adding type registration Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 16:26:08 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015)
-2024-08-07 16:26:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5444f1c3] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6a5c2d2d]
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}]
-2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.action.Action
-2024-08-07 16:26:08 - Import with entity name Action
-2024-08-07 16:26:08 - Bind entity server.haengdong.domain.action.Action on table action
-2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id]
-2024-08-07 16:26:08 - building BasicValue for id
-2024-08-07 16:26:08 - Skipping column re-registration: action.id
-2024-08-07 16:26:08 - Building property id
-2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Building property event
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence]
-2024-08-07 16:26:08 - building BasicValue for sequence
-2024-08-07 16:26:08 - Skipping column re-registration: action.sequence
-2024-08-07 16:26:08 - Building property sequence
-2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.action.BillAction
-2024-08-07 16:26:08 - Import with entity name BillAction
-2024-08-07 16:26:08 - Bind entity server.haengdong.domain.action.BillAction on table bill_action
-2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0)
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id]
-2024-08-07 16:26:08 - building BasicValue for id
-2024-08-07 16:26:08 - Skipping column re-registration: bill_action.id
-2024-08-07 16:26:08 - Building property id
-2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Building property action
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property price with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price]
-2024-08-07 16:26:08 - building BasicValue for price
-2024-08-07 16:26:08 - Skipping column re-registration: bill_action.price
-2024-08-07 16:26:08 - Building property price
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property title with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title]
-2024-08-07 16:26:08 - building BasicValue for title
-2024-08-07 16:26:08 - Skipping column re-registration: bill_action.title
-2024-08-07 16:26:08 - Building property title
-2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction
-2024-08-07 16:26:08 - Import with entity name MemberAction
-2024-08-07 16:26:08 - Bind entity server.haengdong.domain.action.MemberAction on table member_action
-2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id]
-2024-08-07 16:26:08 - building BasicValue for id
-2024-08-07 16:26:08 - Skipping column re-registration: member_action.id
-2024-08-07 16:26:08 - Building property id
-2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Building property action
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property memberGroupId with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId]
-2024-08-07 16:26:08 - building BasicValue for memberGroupId
-2024-08-07 16:26:08 - Skipping column re-registration: member_action.member_group_id
-2024-08-07 16:26:08 - Building property memberGroupId
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property memberName with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName]
-2024-08-07 16:26:08 - building BasicValue for memberName
-2024-08-07 16:26:08 - Skipping column re-registration: member_action.member_name
-2024-08-07 16:26:08 - Building property memberName
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property status with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status]
-2024-08-07 16:26:08 - building BasicValue for status
-2024-08-07 16:26:08 - Skipping column re-registration: member_action.status
-2024-08-07 16:26:08 - Building property status
-2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action
-2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.event.Event
-2024-08-07 16:26:08 - Import with entity name Event
-2024-08-07 16:26:08 - Bind entity server.haengdong.domain.event.Event on table event
-2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id]
-2024-08-07 16:26:08 - building BasicValue for id
-2024-08-07 16:26:08 - Skipping column re-registration: event.id
-2024-08-07 16:26:08 - Building property id
-2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name]
-2024-08-07 16:26:08 - building BasicValue for name
-2024-08-07 16:26:08 - Skipping column re-registration: event.name
-2024-08-07 16:26:08 - Building property name
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property password with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password]
-2024-08-07 16:26:08 - building BasicValue for password
-2024-08-07 16:26:08 - Skipping column re-registration: event.password
-2024-08-07 16:26:08 - Building property password
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property token with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token]
-2024-08-07 16:26:08 - building BasicValue for token
-2024-08-07 16:26:08 - Skipping column re-registration: event.token
-2024-08-07 16:26:08 - Building property token
-2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.event.EventStep
-2024-08-07 16:26:08 - Import with entity name EventStep
-2024-08-07 16:26:08 - Bind entity server.haengdong.domain.event.EventStep on table event_step
-2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id]
-2024-08-07 16:26:08 - building BasicValue for id
-2024-08-07 16:26:08 - Skipping column re-registration: event_step.id
-2024-08-07 16:26:08 - Building property id
-2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
-2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn()
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - Building property event
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property name with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name]
-2024-08-07 16:26:08 - building BasicValue for name
-2024-08-07 16:26:08 - Skipping column re-registration: event_step.name
-2024-08-07 16:26:08 - Building property name
-2024-08-07 16:26:08 - Binding column: AnnotatedColumn()
-2024-08-07 16:26:08 - MetadataSourceProcessor property sequence with lazy=false
-2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence]
-2024-08-07 16:26:08 - building BasicValue for sequence
-2024-08-07 16:26:08 - Skipping column re-registration: event_step.sequence
-2024-08-07 16:26:08 - Building property sequence
-2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for price
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for title
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for memberName
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for status
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for password
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for token
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for name
-2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for sequence
-2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [action]
-2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action]
-2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action]
-2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [event]
-2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step]
-2024-08-07 16:26:08 - Building session factory
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 16:26:08 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@59c00010, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@244268a8, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator=
-, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5206385678613123290, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=60533, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5206385678613123290, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@563ab6d5, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0}
-2024-08-07 16:26:08 - Session factory constructed with filter configurations : {}
-2024-08-07 16:26:08 - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via TCCL
-2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-08-07 16:26:08 - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-08-07 16:26:08 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
-2024-08-07 16:26:08 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
-2024-08-07 16:26:08 - Loaded expression factory via original TCCL
-2024-08-07 16:26:08 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
-2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
-2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
-2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
-2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
-2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 16:26:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@394b9e22] under count; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@63896cf7] under every; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@3f838072] under any; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3aa8c337] under sinh; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@78e7b83] under cosh; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6761f75b] under tanh; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2] under pi; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@c7443f] under log; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : length -> character_length
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@37f627d0] under position; prior registration was null
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@3e24bab6] under overlay; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@391e2a] under trim; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@62c42a3] under cast; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6a8bcb64] under collate; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@78b2d29e] under extract; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@25b402ea] under ifnull; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@1e965426] under pad; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@261099e1] under str; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@64f613da] under format; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@4601a148] under timestampadd; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@1c25deb0] under timestampdiff; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : dateadd -> timestampadd
-2024-08-07 16:26:08 - Registering alternate key : datediff -> timestampdiff
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@6fe337a5] under current_date; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d60bd5a] under current_time; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@43312512] under current_timestamp; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : current date -> current_date
-2024-08-07 16:26:08 - Registering alternate key : current time -> current_time
-2024-08-07 16:26:08 - Registering alternate key : current timestamp -> current_timestamp
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@13f7c165] under local_date; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@655f92a1] under local_time; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1d2d793d] under local_datetime; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57fec63f] under offset_datetime; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : local date -> local_date
-2024-08-07 16:26:08 - Registering alternate key : local time -> local_time
-2024-08-07 16:26:08 - Registering alternate key : local datetime -> local_datetime
-2024-08-07 16:26:08 - Registering alternate key : offset datetime -> offset_datetime
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7a2fd94c] under instant; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : current_instant -> instant
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@30e15628] under sql; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@37ab1b10] under count; prior registration was org.hibernate.dialect.function.CountFunction@394b9e22
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@34f8ce89] under avg; prior registration was NamedSqmFunctionTemplate(avg)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@22ed2886] under mod; prior registration was NamedSqmFunctionTemplate(mod)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : day -> day_of_month
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@655f92a1
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@1d2d793d
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@3085befb] under trunc; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : truncate -> trunc
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@62264d4f] under date_trunc; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : chr -> char
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2bc0603f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@37f627d0
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4ed19540] under concat; prior registration was NamedSqmFunctionTemplate(concat)
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : every -> bool_and
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null
-2024-08-07 16:26:08 - Registering alternate key : any -> bool_or
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@533e8807] under format; prior registration was org.hibernate.dialect.function.FormatFunction@64f613da
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@5a45c218] under listagg; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5c20505f] under mode; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cce92b5] under percentile_cont; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2202c92f] under percentile_disc; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@56adbb07] under rank; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7be6dabb] under dense_rank; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@68fc636a] under percent_rank; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@18301763] under cume_dist; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@23ee92df] under array; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@1a6a4595] under array_list; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@5644f664] under array_agg; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@63af52a6] under array_position; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@384f0e32] under array_positions; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@58835bba] under array_positions_list; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@222eda8a] under array_length; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@1e09c0b] under array_concat; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@76eee0b1] under array_prepend; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@2119b989] under array_append; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@7304ca87] under array_contains; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@7c07023] under array_contains_nullable; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@396c1228] under array_overlaps; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1701beb3] under array_overlaps_nullable; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f13e0a2] under array_get; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@2c86b0ea] under array_set; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@691a5c3a] under array_remove; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@9fd3b61] under array_remove_index; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4a34de5e] under array_slice; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@77648321] under array_replace; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43201f84] under array_trim; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@421d7900] under array_fill; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@45964b9e] under array_fill_list; prior registration was null
-2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4c6eaa65] under array_to_string; prior registration was null
-2024-08-07 16:26:08 - abs(NUMERIC arg)
-2024-08-07 16:26:08 - Double acos(NUMERIC arg)
-2024-08-07 16:26:08 - Boolean any(BOOLEAN predicate)
-2024-08-07 16:26:08 - array( ... )
-2024-08-07 16:26:08 - array_agg(arg)
-2024-08-07 16:26:08 - array_append( ... )
-2024-08-07 16:26:08 - array_concat( ... )
-2024-08-07 16:26:08 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 16:26:08 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray)
-2024-08-07 16:26:08 - array_fill(OBJECT element, INTEGER elementCount)
-2024-08-07 16:26:08 - array_fill_list(OBJECT element, INTEGER elementCount)
-2024-08-07 16:26:08 - array_get(ARRAY array, INTEGER index)
-2024-08-07 16:26:08 - Integer array_length(ARRAY array)
-2024-08-07 16:26:08 - array_list( ... )
-2024-08-07 16:26:08 - Boolean array_overlaps(ARRAY array0, OBJECT array1)
-2024-08-07 16:26:08 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1)
-2024-08-07 16:26:08 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition])
-2024-08-07 16:26:08 - int[] array_positions(ARRAY array, OBJECT element)
-2024-08-07 16:26:08 - List array_positions_list(ARRAY array, OBJECT element)
-2024-08-07 16:26:08 - array_prepend( ... )
-2024-08-07 16:26:08 - array_remove( ... )
-2024-08-07 16:26:08 - array_remove_index( ... )
-2024-08-07 16:26:08 - array_replace( ... )
-2024-08-07 16:26:08 - array_set( ... )
-2024-08-07 16:26:08 - array_slice(ARRAY array, INTEGER start, INTEGER end)
-2024-08-07 16:26:08 - String array_to_string( ... )
-2024-08-07 16:26:08 - array_trim(ARRAY array, INTEGER elementsToRemove)
-2024-08-07 16:26:08 - Integer ascii(STRING arg)
-2024-08-07 16:26:08 - Double asin(NUMERIC arg)
-2024-08-07 16:26:08 - Double atan(NUMERIC arg)
-2024-08-07 16:26:08 - Double atan2(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 16:26:08 - avg(NUMERIC arg)
-2024-08-07 16:26:08 - bit_and(arg)
-2024-08-07 16:26:08 - Integer bit_length(STRING_OR_CLOB arg)
-2024-08-07 16:26:08 - bit_or(arg)
-2024-08-07 16:26:08 - bitand(arg0, arg1)
-2024-08-07 16:26:08 - bitnot(arg)
-2024-08-07 16:26:08 - bitor(arg0, arg1)
-2024-08-07 16:26:08 - bitxor(arg0, arg1)
-2024-08-07 16:26:08 - Boolean bool_and(BOOLEAN predicate)
-2024-08-07 16:26:08 - Boolean bool_or(BOOLEAN predicate)
-2024-08-07 16:26:08 - cast(arg as Type)
-2024-08-07 16:26:08 - ceiling(NUMERIC arg)
-2024-08-07 16:26:08 - Character char(INTEGER arg)
-2024-08-07 16:26:08 - Integer character_length(STRING_OR_CLOB arg)
-2024-08-07 16:26:08 - Character chr(INTEGER arg)
-2024-08-07 16:26:08 - coalesce(arg0[, arg1[, ...]])
-2024-08-07 16:26:08 - String collate(STRING string as COLLATION collation)
-2024-08-07 16:26:08 - String concat(STRING string0[, STRING string1[, ...]])
-2024-08-07 16:26:08 - Double cos(NUMERIC arg)
-2024-08-07 16:26:08 - Double cosh(NUMERIC arg)
-2024-08-07 16:26:08 - Double cot(NUMERIC arg)
-2024-08-07 16:26:08 - Long count([distinct ]{arg|*})
-2024-08-07 16:26:08 - Double cume_dist([arg0[, ...]])
-2024-08-07 16:26:08 - Date curdate()
-2024-08-07 16:26:08 - Date current date
-2024-08-07 16:26:08 - Time current time
-2024-08-07 16:26:08 - Timestamp current timestamp
-2024-08-07 16:26:08 - Date current_date
-2024-08-07 16:26:08 - Instant current_instant
-2024-08-07 16:26:08 - Time current_time
-2024-08-07 16:26:08 - Timestamp current_timestamp
-2024-08-07 16:26:08 - Time curtime()
-2024-08-07 16:26:08 - date_trunc(STRING field, TEMPORAL datetime)
-2024-08-07 16:26:08 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 16:26:08 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 16:26:08 - Integer day(DATE arg)
-2024-08-07 16:26:08 - Integer day_of_month(DATE arg)
-2024-08-07 16:26:08 - Integer day_of_week(DATE arg)
-2024-08-07 16:26:08 - Integer day_of_year(DATE arg)
-2024-08-07 16:26:08 - String dayname(DATE arg)
-2024-08-07 16:26:08 - Double degrees(NUMERIC arg)
-2024-08-07 16:26:08 - Long dense_rank([arg0[, ...]])
-2024-08-07 16:26:08 - Boolean every(BOOLEAN predicate)
-2024-08-07 16:26:08 - Double exp(NUMERIC arg)
-2024-08-07 16:26:08 - extract(TEMPORAL_UNIT field from TEMPORAL arg)
-2024-08-07 16:26:08 - first_valueANY value
-2024-08-07 16:26:08 - floor(NUMERIC arg)
-2024-08-07 16:26:08 - String format(TEMPORAL datetime as STRING pattern)
-2024-08-07 16:26:08 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 16:26:08 - Integer hour(TIME arg)
-2024-08-07 16:26:08 - ifnull(arg0, arg1)
-2024-08-07 16:26:08 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement)
-2024-08-07 16:26:08 - Instant instant
-2024-08-07 16:26:08 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]])
-2024-08-07 16:26:08 - lagANY value[, INTEGER offset[, ANY default]]
-2024-08-07 16:26:08 - last_valueANY value
-2024-08-07 16:26:08 - leadANY value[, INTEGER offset[, ANY default]]
-2024-08-07 16:26:08 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
-2024-08-07 16:26:08 - String left(STRING string, INTEGER length)
-2024-08-07 16:26:08 - Integer length(STRING_OR_CLOB arg)
-2024-08-07 16:26:08 - String listagg(STRING arg0, STRING arg1)
-2024-08-07 16:26:08 - Double ln(NUMERIC arg)
-2024-08-07 16:26:08 - LocalDate local date
-2024-08-07 16:26:08 - LocalDateTime local datetime
-2024-08-07 16:26:08 - LocalTime local time
-2024-08-07 16:26:08 - LocalDate local_date
-2024-08-07 16:26:08 - LocalDateTime local_datetime
-2024-08-07 16:26:08 - LocalTime local_time
-2024-08-07 16:26:08 - Time localtime
-2024-08-07 16:26:08 - Timestamp localtimestamp
-2024-08-07 16:26:08 - Integer locate(STRING pattern, STRING string[, INTEGER start])
-2024-08-07 16:26:08 - Double log(NUMERIC base, NUMERIC arg)
-2024-08-07 16:26:08 - Double log10(NUMERIC arg)
-2024-08-07 16:26:08 - String lower(STRING string)
-2024-08-07 16:26:08 - String lpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 16:26:08 - String ltrim(STRING string)
-2024-08-07 16:26:08 - max(COMPARABLE arg)
-2024-08-07 16:26:08 - Double median(NUMERIC arg)
-2024-08-07 16:26:08 - Integer microsecond(TIME arg)
-2024-08-07 16:26:08 - min(COMPARABLE arg)
-2024-08-07 16:26:08 - Integer minute(TIME arg)
-2024-08-07 16:26:08 - Integer mod(INTEGER arg0, INTEGER arg1)
-2024-08-07 16:26:08 - mode()
-2024-08-07 16:26:08 - Integer month(DATE arg)
-2024-08-07 16:26:08 - String monthname(DATE arg)
-2024-08-07 16:26:08 - Timestamp now()
-2024-08-07 16:26:08 - nth_valueANY value, INTEGER nth
-2024-08-07 16:26:08 - nullif(arg0, arg1)
-2024-08-07 16:26:08 - Integer octet_length(STRING_OR_CLOB arg)
-2024-08-07 16:26:08 - OffsetDateTime offset datetime
-2024-08-07 16:26:08 - OffsetDateTime offset_datetime
-2024-08-07 16:26:08 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length])
-2024-08-07 16:26:08 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character])
-2024-08-07 16:26:08 - Double percent_rank([arg0[, ...]])
-2024-08-07 16:26:08 - percentile_cont(NUMERIC arg)
-2024-08-07 16:26:08 - percentile_disc(NUMERIC arg)
-2024-08-07 16:26:08 - Double pi
-2024-08-07 16:26:08 - Integer position(STRING pattern in STRING string)
-2024-08-07 16:26:08 - Double power(NUMERIC arg0, NUMERIC arg1)
-2024-08-07 16:26:08 - Integer quarter(DATE arg)
-2024-08-07 16:26:08 - Double radians(NUMERIC arg)
-2024-08-07 16:26:08 - Double rand([INTEGER seed])
-2024-08-07 16:26:08 - Long rank([arg0[, ...]])
-2024-08-07 16:26:08 - String repeat(STRING string, INTEGER times)
-2024-08-07 16:26:08 - String replace(STRING string, STRING pattern, STRING replacement)
-2024-08-07 16:26:08 - String right(STRING string, INTEGER length)
-2024-08-07 16:26:08 - round(NUMERIC number[, INTEGER places])
-2024-08-07 16:26:08 - Long row_number()
-2024-08-07 16:26:08 - Long rownum()
-2024-08-07 16:26:08 - String rpad(STRING string, INTEGER length[, STRING padding])
-2024-08-07 16:26:08 - String rtrim(STRING string)
-2024-08-07 16:26:08 - Integer second(TIME arg)
-2024-08-07 16:26:08 - Integer sign(NUMERIC arg)
-2024-08-07 16:26:08 - Double sin(NUMERIC arg)
-2024-08-07 16:26:08 - Double sinh(NUMERIC arg)
-2024-08-07 16:26:08 - String soundex(arg)
-2024-08-07 16:26:08 - String space(INTEGER arg)
-2024-08-07 16:26:08 - Object sql
-2024-08-07 16:26:08 - Double sqrt(NUMERIC arg)
-2024-08-07 16:26:08 - Double stddev_pop(NUMERIC arg)
-2024-08-07 16:26:08 - Double stddev_samp(NUMERIC arg)
-2024-08-07 16:26:08 - String str(arg)
-2024-08-07 16:26:08 - String substr(STRING string, INTEGER start[, INTEGER length])
-2024-08-07 16:26:08 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length])
-2024-08-07 16:26:08 - sum(arg)
-2024-08-07 16:26:08 - Timestamp sysdate
-2024-08-07 16:26:08 - Double tan(NUMERIC arg)
-2024-08-07 16:26:08 - Double tanh(NUMERIC arg)
-2024-08-07 16:26:08 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
-2024-08-07 16:26:08 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
-2024-08-07 16:26:08 - String translate(STRING arg0, STRING arg1, STRING arg2)
-2024-08-07 16:26:08 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1)
-2024-08-07 16:26:08 - trunc( ... )
-2024-08-07 16:26:08 - truncate( ... )
-2024-08-07 16:26:08 - String upper(STRING string)
-2024-08-07 16:26:08 - Double var_pop(NUMERIC arg)
-2024-08-07 16:26:08 - Double var_samp(NUMERIC arg)
-2024-08-07 16:26:08 - Integer week(DATE arg)
-2024-08-07 16:26:08 - Integer year(DATE arg)
-2024-08-07 16:26:08 - Starting QueryInterpretationCache(2048)
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0)
-2024-08-07 16:26:08 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA
-2024-08-07 16:26:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
-2024-08-07 16:26:08 - Configured EntityCopyObserver strategy: disallow
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction
-2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0)
-2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action]
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction
-2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action]
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event
-2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name]
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action
-2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event]
-2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe
-2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep
-2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event]
-2024-08-07 16:26:08 - Starting post-init callbacks
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action]
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action]
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event]
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event]
-2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 84
-2024-08-07 16:26:08 - Created new SQL alias : ba1_0
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = ""
-2024-08-07 16:26:08 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception:
-javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088)
- at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640)
- at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405)
- at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200)
- at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:712)
- at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705)
- at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
- at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704)
- at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
- at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
- at java.base/java.lang.Thread.run(Thread.java:840)
-2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction]
-2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80
-2024-08-07 16:26:08 - [javax.management.remote.rmi.RMIConnectionImpl@f4637a6: connectionId=rmi://192.168.5.4 2] closing.
-2024-08-07 16:26:08 - [javax.management.remote.rmi.RMIConnectionImpl@f4637a6: connectionId=rmi://192.168.5.4 2] closed.
-2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5c8d685e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action]
-2024-08-07 16:26:08 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.BillAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action]
- | +-BasicFetch [server.haengdong.domain.action.BillAction.price]
- | \-BasicFetch [server.haengdong.domain.action.BillAction.title]
-
-2024-08-07 16:26:08 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) {
- primaryTableReference : bill_action as ba1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.action.BillAction
-2024-08-07 16:26:08 - Version select: select id from bill_action where id=?
-2024-08-07 16:26:08 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default)
-2024-08-07 16:26:08 - Update (0): update bill_action set action_id=?,price=?,title=? where id=?
-2024-08-07 16:26:08 - Delete (0): delete from bill_action where id=?
-2024-08-07 16:26:08 - Created new SQL alias : ma1_0
-2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction]
-2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2f51b100] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action]
-2024-08-07 16:26:08 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.MemberAction]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId]
- | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName]
- | \-BasicFetch [server.haengdong.domain.action.MemberAction.status]
-
-2024-08-07 16:26:08 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) {
- primaryTableReference : member_action as ma1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.action.MemberAction
-2024-08-07 16:26:08 - Version select: select id from member_action where id=?
-2024-08-07 16:26:08 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default)
-2024-08-07 16:26:08 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=?
-2024-08-07 16:26:08 - Delete (0): delete from member_action where id=?
-2024-08-07 16:26:08 - Created new SQL alias : e1_0
-2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event]
-2024-08-07 16:26:08 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.Event]
- | +-BasicFetch [server.haengdong.domain.event.Event.name]
- | +-BasicFetch [server.haengdong.domain.event.Event.password]
- | \-BasicFetch [server.haengdong.domain.event.Event.token]
-
-2024-08-07 16:26:08 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : server.haengdong.domain.event.Event) {
- primaryTableReference : event as e1_0
- }
- }
- }
-
-2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.event.Event
-2024-08-07 16:26:08 - Version select: select id from event where id=?
-2024-08-07 16:26:08 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default)
-2024-08-07 16:26:08 - Update (0): update event set name=?,password=?,token=? where id=?
-2024-08-07 16:26:08 - Delete (0): delete from event where id=?
-2024-08-07 16:26:08 - Created new SQL alias : a1_0
-2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action]
-2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c3627c] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event]
-2024-08-07 16:26:08 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.action.Action]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event]
- | \-BasicFetch [server.haengdong.domain.action.Action.sequence]
-
-2024-08-07 16:26:08 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : server.haengdong.domain.action.Action) {
- primaryTableReference : action as a1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.action.Action
-2024-08-07 16:26:08 - Version select: select id from action where id=?
-2024-08-07 16:26:08 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default)
-2024-08-07 16:26:08 - Update (0): update action set event_id=?,sequence=? where id=?
-2024-08-07 16:26:08 - Delete (0): delete from action where id=?
-2024-08-07 16:26:08 - Created new SQL alias : es1_0
-2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep]
-2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4010f232] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event]
-2024-08-07 16:26:08 - DomainResult Graph:
- \-EntityResultImpl [server.haengdong.domain.event.EventStep]
- | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event]
- | +-BasicFetch [server.haengdong.domain.event.EventStep.name]
- | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence]
-
-2024-08-07 16:26:08 - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) {
- primaryTableReference : event_step as es1_0
- TableGroupJoins {
- left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) {
- }
- }
- }
- }
- }
-
-2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.event.EventStep
-2024-08-07 16:26:08 - Version select: select id from event_step where id=?
-2024-08-07 16:26:08 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default)
-2024-08-07 16:26:08 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=?
-2024-08-07 16:26:08 - Delete (0): delete from event_step where id=?
-2024-08-07 16:26:08 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
-2024-08-07 16:26:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5444f1c3] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@7f38545a]
-2024-08-07 16:26:08 - Checking 0 named HQL queries
-2024-08-07 16:26:08 - Checking 0 named SQL queries
-2024-08-07 16:26:08 -
- drop table if exists action cascade
-2024-08-07 16:26:08 -
- drop table if exists bill_action cascade
-2024-08-07 16:26:08 -
- drop table if exists event cascade
-2024-08-07 16:26:08 -
- drop table if exists event_step cascade
-2024-08-07 16:26:08 -
- drop table if exists member_action cascade
-2024-08-07 16:26:08 -
- create table action (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- primary key (id)
- )
-2024-08-07 16:26:08 -
- create table bill_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- price bigint,
- title varchar(30),
- primary key (id)
- )
-2024-08-07 16:26:08 -
- create table event (
- id bigint generated by default as identity,
- name varchar(255),
- password varchar(255),
- token varchar(255),
- primary key (id)
- )
-2024-08-07 16:26:08 -
- create table event_step (
- event_id bigint,
- id bigint generated by default as identity,
- sequence bigint,
- name varchar(255),
- primary key (id)
- )
-2024-08-07 16:26:08 -
- create table member_action (
- action_id bigint unique,
- id bigint generated by default as identity,
- member_group_id bigint,
- member_name varchar(255),
- status enum ('IN','OUT'),
- primary key (id)
- )
-2024-08-07 16:26:08 -
- alter table if exists action
- add constraint FKgf0qmub9va1xbe44nehny31yw
- foreign key (event_id)
- references event
-2024-08-07 16:26:08 -
- alter table if exists bill_action
- add constraint FK54tx517tp0ry6453olkply4us
- foreign key (action_id)
- references action
-2024-08-07 16:26:08 -
- alter table if exists event_step
- add constraint FKe3rkib91cvl0x5w9wqkshmn81
- foreign key (event_id)
- references event
-2024-08-07 16:26:08 -
- alter table if exists member_action
- add constraint FK5jna51dn8fs2ir52l4uwn517u
- foreign key (action_id)
- references action
-2024-08-07 16:26:08 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@67201002
-2024-08-07 16:26:08 - Registering SessionFactory: a2d5f74c-7ddf-4be9-8ba0-71cb45629d36 ()
-2024-08-07 16:26:08 - Not binding SessionFactory to JNDI, no JNDI name configured
-2024-08-07 16:26:08 - Instantiated SessionFactory
-2024-08-07 16:26:08 - Initialized JPA EntityManagerFactory for persistence unit 'default'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'haengdongApplication'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'actionService'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'billActionRepository'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.named-queries#0'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpaMappingContext'
-2024-08-07 16:26:08 - Initializing JpaMetamodelMappingContext…
-2024-08-07 16:26:08 - Finished initializing JpaMetamodelMappingContext
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Statistics initialized [enabled=false]
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration'
-2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'repositoryTagsProvider'
-2024-08-07 16:26:08 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider'
-2024-08-07 16:26:08 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository…
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Looking up named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query BillAction.deleteByAction_EventAndActionId
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Looking up named query BillAction.findByAction_Event
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query BillAction.findByAction_Event
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Looking up named query BillAction.findByAction_Id
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query BillAction.findByAction_Id
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository.
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'memberActionRepository'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.named-queries#2'
-2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0'
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository…
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Looking up named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query MemberAction.findAllByAction_EventAndMemberName
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Looking up named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query MemberAction.existsByAction_EventAndMemberName
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - Hibernate is in classpath; If applicable, HQL parser will be used.
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.event = :event
-
-2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:26:08 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - HQL : delete
-from MemberAction m
-where m.memberName = :memberName and m.action.sequence >= :sequence
-
-2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName)
-2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence)
-2024-08-07 16:26:08 - SqmStatement Tree :
- -> [delete]
- [target = server.haengdong.domain.action.MemberAction(m)]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- :memberName
- <- [EQUAL]
- -> [GREATER_THAN_OR_EQUAL]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence`
- :sequence
- <- [GREATER_THAN_OR_EQUAL]
- <- [and]
- <- [where]
- <- [delete]
-
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query MemberAction.findAllByEvent.count
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event
-2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:26:08 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- -> [joins]
- -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)`
- [fetched = true]
- <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)`
- <- [joins]
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833).event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
- at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10)
-2024-08-07 16:26:08 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count
-2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation
-2024-08-07 16:26:08 - HQL : select distinct m.memberName
-from MemberAction m
-where m.action.event = :event
-
-2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE)
-2024-08-07 16:26:08 - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select(distinct)]
- -> [selection]
- -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName`
- <- [selection]
- <- [select(distinct)]
- -> [from]
- -> [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [root] - `server.haengdong.domain.action.MemberAction(m)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event`
- :event
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
-2024-08-07 16:26:08 - Looking up named query MemberAction.findByAction
-2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace)
-java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
- at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.base/java.lang.reflect.Method.invoke(Method.java:569)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.