Initial commit
This commit is contained in:
37
.gitignore
vendored
Normal file
37
.gitignore
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
HELP.md
|
||||
.gradle
|
||||
build/
|
||||
!gradle/wrapper/gradle-wrapper.jar
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
### STS ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
41
build.gradle
Normal file
41
build.gradle
Normal file
@ -0,0 +1,41 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '3.3.3'
|
||||
id 'io.spring.dependency-management' version '1.1.6'
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '0.0.1-SNAPSHOT'
|
||||
sourceCompatibility = '17'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(17)
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
compileOnly {
|
||||
extendsFrom annotationProcessor
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
|
||||
dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
implementation 'com.oracle.database.jdbc:ojdbc8:19.8.0.0' // Oracle JDBC 드라이버
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web' // Spring Web 의존성
|
||||
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
|
||||
implementation 'org.hibernate.orm:hibernate-core:6.5.2.Final'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0' // Jackson Databind 추가
|
||||
}
|
||||
|
||||
tasks.named('test') {
|
||||
useJUnitPlatform()
|
||||
}
|
23
frontend/.gitignore
vendored
Normal file
23
frontend/.gitignore
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
70
frontend/README.md
Normal file
70
frontend/README.md
Normal file
@ -0,0 +1,70 @@
|
||||
# Getting Started with Create React App
|
||||
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `npm start`
|
||||
|
||||
Runs the app in the development mode.\
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
|
||||
|
||||
The page will reload when you make changes.\
|
||||
You may also see any lint errors in the console.
|
||||
|
||||
### `npm test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.\
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `npm run build`
|
||||
|
||||
Builds the app for production to the `build` folder.\
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.\
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `npm run eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
|
||||
|
||||
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
|
||||
|
||||
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
|
||||
### Code Splitting
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
|
||||
|
||||
### Analyzing the Bundle Size
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
|
||||
|
||||
### Making a Progressive Web App
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
|
||||
|
||||
### Advanced Configuration
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
|
||||
|
||||
### Deployment
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
|
||||
|
||||
### `npm run build` fails to minify
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
|
19831
frontend/package-lock.json
generated
Normal file
19831
frontend/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
40
frontend/package.json
Normal file
40
frontend/package.json
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@testing-library/jest-dom": "^5.17.0",
|
||||
"@testing-library/react": "^13.4.0",
|
||||
"@testing-library/user-event": "^13.5.0",
|
||||
"frontend": "file:",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-router-dom": "^6.26.2",
|
||||
"react-scripts": "5.0.1",
|
||||
"web-vitals": "^2.1.4"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"react-app",
|
||||
"react-app/jest"
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
BIN
frontend/public/favicon.ico
Normal file
BIN
frontend/public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
43
frontend/public/index.html
Normal file
43
frontend/public/index.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Web site created using create-react-app"
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
BIN
frontend/public/logo192.png
Normal file
BIN
frontend/public/logo192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
BIN
frontend/public/logo512.png
Normal file
BIN
frontend/public/logo512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
25
frontend/public/manifest.json
Normal file
25
frontend/public/manifest.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
},
|
||||
{
|
||||
"src": "logo192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "logo512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
3
frontend/public/robots.txt
Normal file
3
frontend/public/robots.txt
Normal file
@ -0,0 +1,3 @@
|
||||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
121
frontend/src/App.css
Normal file
121
frontend/src/App.css
Normal file
@ -0,0 +1,121 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: grid;
|
||||
grid-template-columns: 200px 1fr;
|
||||
grid-template-rows: auto 1fr;
|
||||
gap: 10px;
|
||||
height: 100vh;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
grid-column: span 2;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.home-link {
|
||||
text-align: right;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.banner {
|
||||
background-color: #f8d7da;
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.aside-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
background-color: #f1f1f1;
|
||||
padding: 20px;
|
||||
height: calc(100vh - 60px);
|
||||
}
|
||||
|
||||
.aside-section {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.login-button {
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.login-menu {
|
||||
list-style: none;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.category {
|
||||
list-style: none;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.category_list{
|
||||
text-align: center;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
hr{
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
/*메인*/
|
||||
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
table th, table td {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
text-align: left;
|
||||
border-right:none;
|
||||
border-left:none;
|
||||
border-top:none;
|
||||
border-bottom:none;
|
||||
|
||||
}
|
||||
|
||||
.write-button-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.write-button {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
/*회원가입 폼*/
|
||||
|
||||
|
||||
|
||||
h2 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
input {
|
||||
|
||||
}
|
150
frontend/src/App.js
Normal file
150
frontend/src/App.js
Normal file
@ -0,0 +1,150 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { BrowserRouter as Router, Route, Routes, Link, useNavigate } from 'react-router-dom';
|
||||
import Register from './register';
|
||||
import Login from './login';
|
||||
import MyPosts from './MyPosts';
|
||||
import EditProfile from './EditProfile';
|
||||
import BoardList from './BoardList';
|
||||
import CreatePost from './CreatePost';
|
||||
import './App.css';
|
||||
|
||||
function App() {
|
||||
const [user, setUser] = useState(null); // 로그인된 사용자 정보를 저장하는 상태
|
||||
const [postCount, setPostCount] = useState(0);
|
||||
const [error, setError] = useState(null); // API 호출 중 발생한 에러 상태
|
||||
|
||||
// 로그인 상태 유지
|
||||
useEffect(() => {
|
||||
const fetchCurrentUser = async () => {
|
||||
try {
|
||||
const response = await fetch('http://localhost:8080/users/current-user', {
|
||||
method: 'GET',
|
||||
credentials: 'include', // 세션 기반 쿠키 전송
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
const user = await response.json();
|
||||
setUser(user);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('현재 사용자 정보 불러오기 실패:', error);
|
||||
}
|
||||
};
|
||||
|
||||
fetchCurrentUser();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
const fetchPostCount = async () => {
|
||||
if (user) {
|
||||
try {
|
||||
const response = await fetch(`http://localhost:8080/boards/count/${user.userId}`);
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
setPostCount(data); // 게시글 개수를 상태로 저장
|
||||
} else {
|
||||
throw new Error('게시글 개수를 불러오는 중 오류 발생');
|
||||
}
|
||||
} catch (error) {
|
||||
setError(error.message);
|
||||
console.error('게시글 개수 가져오기 실패:', error);
|
||||
}
|
||||
}
|
||||
};
|
||||
fetchPostCount();
|
||||
}, [user]);
|
||||
|
||||
return (
|
||||
<Router>
|
||||
<div className="container">
|
||||
{/* 고정된 헤더 */}
|
||||
<header>
|
||||
<div className="home-link">홈 ></div>
|
||||
<div className="banner">메인 배너</div>
|
||||
</header>
|
||||
|
||||
{/* 고정된 사이드바 */}
|
||||
<aside className="aside-container">
|
||||
<RenderAside user={user} setUser={setUser} postCount={postCount} error={error} />
|
||||
<div className="aside-section">
|
||||
<ul className="category">
|
||||
<li>카테고리</li>
|
||||
<hr width="100%" color="black"></hr>
|
||||
<Link to="/">전체게시판</Link><br />
|
||||
<Link to="/shared">공유게시판</Link><br />
|
||||
<Link to="/questions">질문게시판</Link><br />
|
||||
<Link to="/free">자유게시판</Link>
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
{/* 동적 콘텐츠 영역 */}
|
||||
<main>
|
||||
<Routes>
|
||||
<Route path="/" element={<BoardList />} />
|
||||
<Route path="/register" element={<Register />} />
|
||||
<Route path="/login" element={<Login setUser={setUser} />} />
|
||||
<Route path="/my-posts" element={<MyPosts user={user} />} />
|
||||
<Route path="/edit-profile" element={<EditProfile user={user} />} />
|
||||
<Route path="/create-post" element={<CreatePost user={user} />} /> {/* 글쓰기 페이지 */}
|
||||
</Routes>
|
||||
</main>
|
||||
|
||||
{/* 글쓰기 링크 */}
|
||||
<Link to="/create-post">글쓰기</Link>
|
||||
</div>
|
||||
</Router>
|
||||
);
|
||||
}
|
||||
|
||||
function RenderAside({ user, setUser, postCount, error }) {
|
||||
const navigate = useNavigate(); // useNavigate는 Router 내부에서만 사용 가능
|
||||
|
||||
// 로그아웃 처리
|
||||
const handleLogout = async () => {
|
||||
try {
|
||||
const response = await fetch('http://localhost:8080/users/logout', {
|
||||
method: 'POST',
|
||||
credentials: 'include', // 세션 무효화 요청
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
localStorage.removeItem('token'); // 로그아웃 시 세션 쿠키를 이용하므로 토큰 대신 상태 초기화
|
||||
setUser(null);
|
||||
alert('로그아웃 되었습니다.');
|
||||
navigate('/login'); // 로그아웃 후 로그인 페이지로 이동
|
||||
} else {
|
||||
throw new Error('로그아웃 실패');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('로그아웃 에러:', error);
|
||||
}
|
||||
};
|
||||
|
||||
if (error) {
|
||||
return <div>오류 발생: {error}</div>;
|
||||
}
|
||||
|
||||
if (!user) {
|
||||
return (
|
||||
<ul className="login-menu">
|
||||
<Link to="/login">로그인</Link><br />
|
||||
<Link to="/register">회원가입</Link><br />
|
||||
<Link to="/find-id">아이디/비밀번호 찾기</Link><br />
|
||||
</ul>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="aside-section">
|
||||
<p>닉네임: {user.userNickname}</p>
|
||||
<p>아이디: {user.userId}</p>
|
||||
<p>내가 쓴 글 개수: {postCount}</p>
|
||||
<Link to="/my-posts">내가 쓴 글</Link><br />
|
||||
<Link to="/edit-profile">개인정보 수정</Link><br />
|
||||
<button onClick={handleLogout}>로그아웃</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
8
frontend/src/App.test.js
Normal file
8
frontend/src/App.test.js
Normal file
@ -0,0 +1,8 @@
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import App from './App';
|
||||
|
||||
test('renders learn react link', () => {
|
||||
render(<App />);
|
||||
const linkElement = screen.getByText(/learn react/i);
|
||||
expect(linkElement).toBeInTheDocument();
|
||||
});
|
45
frontend/src/BoardList.js
Normal file
45
frontend/src/BoardList.js
Normal file
@ -0,0 +1,45 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
|
||||
function BoardList() {
|
||||
const [boards, setBoards] = useState([]);
|
||||
const [error, setError] = useState(null); // 에러 상태 추가
|
||||
|
||||
useEffect(() => {
|
||||
const fetchBoards = async () => {
|
||||
try {
|
||||
const response = await fetch('http://localhost:8080/boards');
|
||||
if (!response.ok) {
|
||||
// 에러가 발생한 경우 JSON 응답에서 메시지만 추출
|
||||
const errorData = await response.json();
|
||||
setError(errorData.message || '서버에서 오류가 발생했습니다.');
|
||||
} else {
|
||||
const data = await response.json();
|
||||
setBoards(data);
|
||||
}
|
||||
} catch (err) {
|
||||
// 네트워크 오류가 발생했을 때 처리
|
||||
setError('네트워크 오류가 발생했습니다.');
|
||||
}
|
||||
};
|
||||
|
||||
fetchBoards();
|
||||
}, []);
|
||||
|
||||
if (error) {
|
||||
// 에러가 있을 때 에러 메시지를 출력
|
||||
return <div>오류: {error}</div>;
|
||||
}
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h2>게시판 목록</h2>
|
||||
<ul>
|
||||
{boards.map((board) => (
|
||||
<li key={board.boardNumber}>{board.boardTitle}</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default BoardList;
|
71
frontend/src/CreatePost.js
Normal file
71
frontend/src/CreatePost.js
Normal file
@ -0,0 +1,71 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
function CreatePost() {
|
||||
const [title, setTitle] = useState('');
|
||||
const [content, setContent] = useState('');
|
||||
const [category, setCategory] = useState(1); // 카테고리 기본값 설정
|
||||
|
||||
const handleSubmit = async (e) => {
|
||||
e.preventDefault();
|
||||
|
||||
const newPost = {
|
||||
boardTitle: title,
|
||||
boardWrite: content,
|
||||
boardCategory: category // 선택된 카테고리 값
|
||||
};
|
||||
|
||||
try {
|
||||
const response = await fetch('http://localhost:8080/boards/create', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify(newPost),
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
alert('글 작성 완료');
|
||||
setTitle('');
|
||||
setContent('');
|
||||
} else {
|
||||
alert('글 작성 실패');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('글 작성 오류:', error);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h2>글쓰기</h2>
|
||||
<form onSubmit={handleSubmit}>
|
||||
<label>제목:</label>
|
||||
<input
|
||||
type="text"
|
||||
value={title}
|
||||
onChange={(e) => setTitle(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>내용:</label>
|
||||
<textarea
|
||||
value={content}
|
||||
onChange={(e) => setContent(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>카테고리:</label>
|
||||
<select value={category} onChange={(e) => setCategory(Number(e.target.value))}>
|
||||
<option value={1}>자유게시판</option>
|
||||
<option value={2}>공유게시판</option>
|
||||
<option value={3}>질문게시판</option>
|
||||
</select>
|
||||
<br />
|
||||
|
||||
<button type="submit">글 작성</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default CreatePost;
|
57
frontend/src/EditProfile.js
Normal file
57
frontend/src/EditProfile.js
Normal file
@ -0,0 +1,57 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
function EditProfile({ user }) {
|
||||
const [nickname, setNickname] = useState(user ? user.userNickname : '');
|
||||
const [password, setPassword] = useState('');
|
||||
|
||||
const handleUpdate = async (e) => {
|
||||
e.preventDefault();
|
||||
|
||||
const updatedData = { userNickname: nickname, userPassword: password };
|
||||
|
||||
try {
|
||||
const response = await fetch(`http://localhost:8080/users/${user.userId}`, {
|
||||
method: 'PUT',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify(updatedData),
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
alert('프로필이 업데이트되었습니다.');
|
||||
} else {
|
||||
alert('업데이트 실패');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('업데이트 에러:', error);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h2>프로필 수정</h2>
|
||||
<form onSubmit={handleUpdate}>
|
||||
<label>닉네임:</label>
|
||||
<input
|
||||
type="text"
|
||||
value={nickname}
|
||||
onChange={(e) => setNickname(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>비밀번호:</label>
|
||||
<input
|
||||
type="password"
|
||||
value={password}
|
||||
onChange={(e) => setPassword(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<button type="submit">수정하기</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default EditProfile;
|
33
frontend/src/MyPosts.js
Normal file
33
frontend/src/MyPosts.js
Normal file
@ -0,0 +1,33 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
|
||||
function MyPosts({ user }) {
|
||||
const [posts, setPosts] = useState([]);
|
||||
|
||||
useEffect(() => {
|
||||
const fetchPosts = async () => {
|
||||
if (user) {
|
||||
const response = await fetch(`http://localhost:8080/boards/user/${user.userId}`);
|
||||
const data = await response.json();
|
||||
setPosts(data);
|
||||
}
|
||||
};
|
||||
fetchPosts();
|
||||
}, [user]);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h2>{user?.userNickname}님의 게시물</h2>
|
||||
{posts.length > 0 ? (
|
||||
<ul>
|
||||
{posts.map((post) => (
|
||||
<li key={post.boardNumber}>{post.boardTitle}</li>
|
||||
))}
|
||||
</ul>
|
||||
) : (
|
||||
<p>게시물이 없습니다.</p>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default MyPosts;
|
13
frontend/src/index.css
Normal file
13
frontend/src/index.css
Normal file
@ -0,0 +1,13 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||
monospace;
|
||||
}
|
17
frontend/src/index.js
Normal file
17
frontend/src/index.js
Normal file
@ -0,0 +1,17 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom/client';
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import reportWebVitals from './reportWebVitals';
|
||||
|
||||
const root = ReactDOM.createRoot(document.getElementById('root'));
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
||||
|
||||
// If you want to start measuring performance in your app, pass a function
|
||||
// to log results (for example: reportWebVitals(console.log))
|
||||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
||||
reportWebVitals();
|
90
frontend/src/login.js
Normal file
90
frontend/src/login.js
Normal file
@ -0,0 +1,90 @@
|
||||
import React, { useState } from 'react';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
|
||||
function Login({ setUser }) {
|
||||
const [userId, setUserId] = useState(''); // 사용자 ID 상태
|
||||
const [password, setPassword] = useState(''); // 비밀번호 상태
|
||||
const [loading, setLoading] = useState(false); // 로딩 상태
|
||||
const [errorMessage, setErrorMessage] = useState(''); // 에러 메시지 상태
|
||||
const navigate = useNavigate();
|
||||
|
||||
const handleLogin = async (e) => {
|
||||
e.preventDefault();
|
||||
|
||||
if (!userId.trim() || !password.trim()) {
|
||||
setErrorMessage('아이디와 비밀번호를 입력해주세요.');
|
||||
return;
|
||||
}
|
||||
|
||||
const credentials = { userId, userPassword: password }; // 서버에 맞춘 데이터 이름
|
||||
setLoading(true);
|
||||
setErrorMessage(''); // 에러 메시지 초기화
|
||||
|
||||
try {
|
||||
const response = await fetch('http://localhost:8080/users/login', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify(credentials),
|
||||
credentials: 'include', // 세션 쿠키 전송
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
// 로그인 성공 시 사용자 정보 요청
|
||||
const userResponse = await fetch('http://localhost:8080/users/current-user', {
|
||||
method: 'GET',
|
||||
credentials: 'include', // 세션 기반 요청
|
||||
});
|
||||
|
||||
if (userResponse.ok) {
|
||||
const user = await userResponse.json();
|
||||
setUser(user); // 로그인된 사용자 정보를 상태에 저장
|
||||
alert('로그인 성공');
|
||||
navigate('/');
|
||||
} else {
|
||||
setErrorMessage('사용자 정보를 가져오는 데 실패했습니다.');
|
||||
}
|
||||
} else if (response.status === 401) {
|
||||
setErrorMessage('아이디 또는 비밀번호가 잘못되었습니다.');
|
||||
} else {
|
||||
setErrorMessage('로그인 중 오류가 발생했습니다. 다시 시도해주세요.');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('로그인 에러:', error);
|
||||
setErrorMessage('서버와의 연결에 문제가 발생했습니다.');
|
||||
} finally {
|
||||
setLoading(false); // 로딩 상태 종료
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="login-container">
|
||||
<h2>로그인</h2>
|
||||
{errorMessage && <p style={{ color: 'red' }}>{errorMessage}</p>} {/* 에러 메시지 표시 */}
|
||||
<form onSubmit={handleLogin}>
|
||||
<label>아이디:</label>
|
||||
<input
|
||||
type="text"
|
||||
value={userId}
|
||||
onChange={(e) => setUserId(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>비밀번호:</label>
|
||||
<input
|
||||
type="password"
|
||||
value={password}
|
||||
onChange={(e) => setPassword(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<button type="submit" disabled={loading}>
|
||||
{loading ? '로그인 중...' : '로그인'}
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Login;
|
1
frontend/src/logo.svg
Normal file
1
frontend/src/logo.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
|
After Width: | Height: | Size: 2.6 KiB |
95
frontend/src/register.js
Normal file
95
frontend/src/register.js
Normal file
@ -0,0 +1,95 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
function Register() {
|
||||
const [userId, setUserId] = useState(''); // 필드 이름 변경
|
||||
const [userPassword, setUserPassword] = useState(''); // 필드 이름 변경
|
||||
const [rePassword, setRePassword] = useState('');
|
||||
const [userName, setUserName] = useState(''); // 필드 이름 변경
|
||||
const [userNickname, setUserNickname] = useState('');
|
||||
|
||||
const handleSignup = async (e) => {
|
||||
e.preventDefault();
|
||||
|
||||
if (userPassword !== rePassword) {
|
||||
alert("비밀번호가 일치하지 않습니다.");
|
||||
return;
|
||||
}
|
||||
|
||||
// 백엔드 User 엔티티와 필드 이름을 일치시킴
|
||||
const user = {
|
||||
userId, // userId 필드로 변경
|
||||
userPassword, // userPassword 필드로 변경
|
||||
userName, // userName 필드로 변경
|
||||
userNickname // userNickname 필드 그대로 사용
|
||||
};
|
||||
|
||||
try {
|
||||
const response = await fetch('http://localhost:8080/users/register', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify(user),
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
alert('회원가입 성공');
|
||||
} else {
|
||||
alert('회원가입 실패');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('회원가입 에러:', error);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="register-container">
|
||||
<h2>회원가입</h2>
|
||||
<form onSubmit={handleSignup}>
|
||||
<label>아이디:</label>
|
||||
<input
|
||||
type="text"
|
||||
value={userId}
|
||||
onChange={(e) => setUserId(e.target.value)} // 필드 이름 변경
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>비밀번호:</label>
|
||||
<input
|
||||
type="password"
|
||||
value={userPassword}
|
||||
onChange={(e) => setUserPassword(e.target.value)} // 필드 이름 변경
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>비밀번호 확인:</label>
|
||||
<input
|
||||
type="password"
|
||||
value={rePassword}
|
||||
onChange={(e) => setRePassword(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>이름:</label>
|
||||
<input
|
||||
type="text"
|
||||
value={userName}
|
||||
onChange={(e) => setUserName(e.target.value)} // 필드 이름 변경
|
||||
required
|
||||
/><br />
|
||||
|
||||
<label>닉네임:</label>
|
||||
<input
|
||||
type="text"
|
||||
value={userNickname}
|
||||
onChange={(e) => setUserNickname(e.target.value)}
|
||||
required
|
||||
/><br />
|
||||
|
||||
<button type="submit">회원가입</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Register;
|
13
frontend/src/reportWebVitals.js
Normal file
13
frontend/src/reportWebVitals.js
Normal file
@ -0,0 +1,13 @@
|
||||
const reportWebVitals = onPerfEntry => {
|
||||
if (onPerfEntry && onPerfEntry instanceof Function) {
|
||||
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
||||
getCLS(onPerfEntry);
|
||||
getFID(onPerfEntry);
|
||||
getFCP(onPerfEntry);
|
||||
getLCP(onPerfEntry);
|
||||
getTTFB(onPerfEntry);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
export default reportWebVitals;
|
5
frontend/src/setupTests.js
Normal file
5
frontend/src/setupTests.js
Normal file
@ -0,0 +1,5 @@
|
||||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||
// allows you to do things like:
|
||||
// expect(element).toHaveTextContent(/react/i)
|
||||
// learn more: https://github.com/testing-library/jest-dom
|
||||
import '@testing-library/jest-dom';
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
7
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
7
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
249
gradlew
vendored
Normal file
249
gradlew
vendored
Normal file
@ -0,0 +1,249 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Copyright © 2015-2021 the original authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
# Gradle start up script for POSIX generated by Gradle.
|
||||
#
|
||||
# Important for running:
|
||||
#
|
||||
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||
# noncompliant, but you have some other compliant shell such as ksh or
|
||||
# bash, then to run this script, type that shell name before the whole
|
||||
# command line, like:
|
||||
#
|
||||
# ksh Gradle
|
||||
#
|
||||
# Busybox and similar reduced shells will NOT work, because this script
|
||||
# requires all of these POSIX shell features:
|
||||
# * functions;
|
||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||
# * compound commands having a testable exit status, especially «case»;
|
||||
# * various built-in commands including «command», «set», and «ulimit».
|
||||
#
|
||||
# Important for patching:
|
||||
#
|
||||
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||
#
|
||||
# The "traditional" practice of packing multiple parameters into a
|
||||
# space-separated string is a well documented source of bugs and security
|
||||
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||
# options in "$@", and eventually passing that to Java.
|
||||
#
|
||||
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||
# see the in-line comments for details.
|
||||
#
|
||||
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
|
||||
# Resolve links: $0 may be a link
|
||||
app_path=$0
|
||||
|
||||
# Need this for daisy-chained symlinks.
|
||||
while
|
||||
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||
[ -h "$app_path" ]
|
||||
do
|
||||
ls=$( ls -ld "$app_path" )
|
||||
link=${ls#*' -> '}
|
||||
case $link in #(
|
||||
/*) app_path=$link ;; #(
|
||||
*) app_path=$APP_HOME$link ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
|
||||
warn () {
|
||||
echo "$*"
|
||||
} >&2
|
||||
|
||||
die () {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
} >&2
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
nonstop=false
|
||||
case "$( uname )" in #(
|
||||
CYGWIN* ) cygwin=true ;; #(
|
||||
Darwin* ) darwin=true ;; #(
|
||||
MSYS* | MINGW* ) msys=true ;; #(
|
||||
NONSTOP* ) nonstop=true ;;
|
||||
esac
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD=$JAVA_HOME/jre/sh/java
|
||||
else
|
||||
JAVACMD=$JAVA_HOME/bin/java
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD=java
|
||||
if ! command -v java >/dev/null 2>&1
|
||||
then
|
||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,SC3045
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,SC3045
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
fi
|
||||
|
||||
# Collect all arguments for the java command, stacking in reverse order:
|
||||
# * args from the command line
|
||||
# * the main class name
|
||||
# * -classpath
|
||||
# * -D...appname settings
|
||||
# * --module-path (only if needed)
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
||||
|
||||
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||
if "$cygwin" || "$msys" ; then
|
||||
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
||||
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
||||
|
||||
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
||||
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
for arg do
|
||||
if
|
||||
case $arg in #(
|
||||
-*) false ;; # don't mess with options #(
|
||||
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
||||
[ -e "$t" ] ;; #(
|
||||
*) false ;;
|
||||
esac
|
||||
then
|
||||
arg=$( cygpath --path --ignore --mixed "$arg" )
|
||||
fi
|
||||
# Roll the args list around exactly as many times as the number of
|
||||
# args, so each arg winds up back in the position where it started, but
|
||||
# possibly modified.
|
||||
#
|
||||
# NB: a `for` loop captures its iteration list before it begins, so
|
||||
# changing the positional parameters here affects neither the number of
|
||||
# iterations, nor the values presented in `arg`.
|
||||
shift # remove old arg
|
||||
set -- "$@" "$arg" # push replacement arg
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
|
||||
# Collect all arguments for the java command:
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# and any embedded shellness will be escaped.
|
||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||
# treated as '${Hostname}' itself on the command line.
|
||||
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
-classpath "$CLASSPATH" \
|
||||
org.gradle.wrapper.GradleWrapperMain \
|
||||
"$@"
|
||||
|
||||
# Stop when "xargs" is not available.
|
||||
if ! command -v xargs >/dev/null 2>&1
|
||||
then
|
||||
die "xargs is not available"
|
||||
fi
|
||||
|
||||
# Use "xargs" to parse quoted args.
|
||||
#
|
||||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||
#
|
||||
# In Bash we could simply go:
|
||||
#
|
||||
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
||||
# set -- "${ARGS[@]}" "$@"
|
||||
#
|
||||
# but POSIX shell has neither arrays nor command substitution, so instead we
|
||||
# post-process each arg (as a line of input to sed) to backslash-escape any
|
||||
# character that might be a shell metacharacter, then use eval to reverse
|
||||
# that process (while maintaining the separation between arguments), and wrap
|
||||
# the whole thing up as a single "set" statement.
|
||||
#
|
||||
# This will of course break if any of these variables contains a newline or
|
||||
# an unmatched quote.
|
||||
#
|
||||
|
||||
eval "set -- $(
|
||||
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
||||
xargs -n1 |
|
||||
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
||||
tr '\n' ' '
|
||||
)" '"$@"'
|
||||
|
||||
exec "$JAVACMD" "$@"
|
92
gradlew.bat
vendored
Normal file
92
gradlew.bat
vendored
Normal file
@ -0,0 +1,92 @@
|
||||
@rem
|
||||
@rem Copyright 2015 the original author or authors.
|
||||
@rem
|
||||
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@rem you may not use this file except in compliance with the License.
|
||||
@rem You may obtain a copy of the License at
|
||||
@rem
|
||||
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||
@rem
|
||||
@rem Unless required by applicable law or agreed to in writing, software
|
||||
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@rem See the License for the specific language governing permissions and
|
||||
@rem limitations under the License.
|
||||
@rem
|
||||
|
||||
@if "%DEBUG%"=="" @echo off
|
||||
@rem ##########################################################################
|
||||
@rem
|
||||
@rem Gradle startup script for Windows
|
||||
@rem
|
||||
@rem ##########################################################################
|
||||
|
||||
@rem Set local scope for the variables with windows NT shell
|
||||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%"=="" set DIRNAME=.
|
||||
@rem This is normally unused
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||
|
||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
||||
|
||||
@rem Find java.exe
|
||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if %ERRORLEVEL% equ 0 goto execute
|
||||
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
|
||||
goto fail
|
||||
|
||||
:findJavaFromJavaHome
|
||||
set JAVA_HOME=%JAVA_HOME:"=%
|
||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto execute
|
||||
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
|
||||
goto fail
|
||||
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
|
||||
|
||||
@rem Execute Gradle
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||
|
||||
:fail
|
||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||
rem the _cmd.exe /c_ return code!
|
||||
set EXIT_CODE=%ERRORLEVEL%
|
||||
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||
exit /b %EXIT_CODE%
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
||||
:omega
|
335
hs_err_pid13032.log
Normal file
335
hs_err_pid13032.log
Normal file
@ -0,0 +1,335 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (malloc) failed to allocate 1048576 bytes. Error detail: AllocateHeap
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (allocation.cpp:44), pid=13032, tid=1792
|
||||
#
|
||||
# JRE version: (17.0.12+7) (build )
|
||||
# Java VM: OpenJDK 64-Bit Server VM (17.0.12+7, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java -Daether.dependencyCollector.impl=bf c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-5f6066ead7fe3fd3b66fc97f0c938564-sock
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 11 13:29:00 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 0.067105 seconds (0d 0h 0m 0s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000001c6b18c5d50): JavaThread "Unknown thread" [_thread_in_vm, id=1792, stack(0x0000001e5ce00000,0x0000001e5cf00000)]
|
||||
|
||||
Stack: [0x0000001e5ce00000,0x0000001e5cf00000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0xa70d3]
|
||||
V [jvm.dll+0x6b2e9a]
|
||||
V [jvm.dll+0x6b3b8f]
|
||||
V [jvm.dll+0x68c0b3]
|
||||
V [jvm.dll+0x80916b]
|
||||
V [jvm.dll+0x36d434]
|
||||
V [jvm.dll+0x7e7425]
|
||||
V [jvm.dll+0x3f0edf]
|
||||
V [jvm.dll+0x3f2a31]
|
||||
C [jli.dll+0x528f]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x00007ffa94a26f18, length=0, elements={
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
|
||||
Other Threads:
|
||||
0x000001c6b18d8c10 GCTaskThread "GC Thread#0" [stack: 0x0000001e5cf00000,0x0000001e5d000000] [id=8768]
|
||||
|
||||
=>0x000001c6b18c5d50 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=1792, stack(0x0000001e5ce00000,0x0000001e5cf00000)]
|
||||
|
||||
Threads with active compile tasks:
|
||||
|
||||
VM state: not at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: None
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) not mapped
|
||||
Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000
|
||||
|
||||
GC Precious Log:
|
||||
CPUs: 12 total, 12 available
|
||||
Memory: 16251M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (32-bit)
|
||||
Alignments: Space 512K, Generation 512K, Heap 2M
|
||||
Heap Min Capacity: 100M
|
||||
Heap Initial Capacity: 100M
|
||||
Heap Max Capacity: 1G
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 10
|
||||
|
||||
Heap:
|
||||
PSYoungGen total 29696K, used 512K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000)
|
||||
eden space 25600K, 2% used [0x00000000eab00000,0x00000000eab80070,0x00000000ec400000)
|
||||
from space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000)
|
||||
to space 4096K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec800000)
|
||||
ParOldGen total 68608K, used 0K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c4300000)
|
||||
Metaspace used 1149K, committed 1216K, reserved 1114112K
|
||||
class space used 101K, committed 128K, reserved 1048576K
|
||||
|
||||
Card table byte_map: [0x000001c6b1250000,0x000001c6b1460000] _byte_map_base: 0x000001c6b0c50000
|
||||
|
||||
Marking Bits: (ParMarkBitMap*) 0x00007ffa94a958b0
|
||||
Begin Bits: [0x000001c6c3550000, 0x000001c6c4550000)
|
||||
End Bits: [0x000001c6c4550000, 0x000001c6c5550000)
|
||||
|
||||
Polling page: 0x000001c6af820000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 1.02 MB used.
|
||||
Class: 101.05 KB used.
|
||||
Both: 1.12 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 1.06 MB ( 2%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 128.00 KB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 1.19 MB ( <1%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 12.00 MB
|
||||
Class: 15.75 MB
|
||||
Both: 27.75 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 17179869184.00 GB
|
||||
CDS: off
|
||||
MetaspaceReclaimPolicy: balanced
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- new_chunks_are_fully_committed: 0.
|
||||
- uncommit_free_chunks: 1.
|
||||
- use_allocation_guard: 0.
|
||||
- handle_deallocations: 1.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 0.
|
||||
num_arena_births: 2.
|
||||
num_arena_deaths: 0.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 19.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 0.
|
||||
num_chunks_taken_from_freelist: 3.
|
||||
num_chunk_merges: 0.
|
||||
num_chunk_splits: 2.
|
||||
num_chunks_enlarged: 0.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=120000Kb used=0Kb max_used=0Kb free=120000Kb
|
||||
bounds [0x000001c6bc020000, 0x000001c6bc290000, 0x000001c6c3550000]
|
||||
CodeHeap 'profiled nmethods': size=120000Kb used=0Kb max_used=0Kb free=120000Kb
|
||||
bounds [0x000001c6b4550000, 0x000001c6b47c0000, 0x000001c6bba80000]
|
||||
CodeHeap 'non-nmethods': size=5760Kb used=202Kb max_used=353Kb free=5557Kb
|
||||
bounds [0x000001c6bba80000, 0x000001c6bbcf0000, 0x000001c6bc020000]
|
||||
total_blobs=66 nmethods=0 adapters=47
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (0 events):
|
||||
No events
|
||||
|
||||
GC Heap History (0 events):
|
||||
No events
|
||||
|
||||
Dll operation events (1 events):
|
||||
Event: 0.016 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
|
||||
Deoptimization events (0 events):
|
||||
No events
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 0.042 Loading class java/lang/Long
|
||||
Event: 0.043 Loading class java/lang/Long done
|
||||
Event: 0.043 Loading class java/util/Iterator
|
||||
Event: 0.044 Loading class java/util/Iterator done
|
||||
Event: 0.044 Loading class java/lang/reflect/RecordComponent
|
||||
Event: 0.044 Loading class java/lang/reflect/RecordComponent done
|
||||
Event: 0.044 Loading class jdk/internal/vm/vector/VectorSupport
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport done
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$VectorPayload
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$VectorPayload done
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$Vector
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$Vector done
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$VectorMask
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$VectorMask done
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$VectorShuffle
|
||||
Event: 0.045 Loading class jdk/internal/vm/vector/VectorSupport$VectorShuffle done
|
||||
Event: 0.049 Loading class java/lang/NullPointerException
|
||||
Event: 0.049 Loading class java/lang/NullPointerException done
|
||||
Event: 0.049 Loading class java/lang/ArithmeticException
|
||||
Event: 0.051 Loading class java/lang/ArithmeticException done
|
||||
|
||||
Classes unloaded (0 events):
|
||||
No events
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (0 events):
|
||||
No events
|
||||
|
||||
VM Operations (0 events):
|
||||
No events
|
||||
|
||||
Events (0 events):
|
||||
No events
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff66a7a0000 - 0x00007ff66a7ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffae5cf0000 - 0x00007ffae5f07000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ffae3ef0000 - 0x00007ffae3fb4000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ffae3010000 - 0x00007ffae33bd000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ffae33c0000 - 0x00007ffae34d1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ffadbaa0000 - 0x00007ffadbab7000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ffadba80000 - 0x00007ffadba9b000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffae3bf0000 - 0x00007ffae3d9e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ffae34e0000 - 0x00007ffae3506000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ffae4db0000 - 0x00007ffae4dd9000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ffae3510000 - 0x00007ffae3629000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ffae3750000 - 0x00007ffae37ea000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ffacb330000 - 0x00007ffacb5c3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ffae3b40000 - 0x00007ffae3be7000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ffae3a30000 - 0x00007ffae3a61000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ffadfc30000 - 0x00007ffadfc3c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ffaacf90000 - 0x00007ffaad01d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ffa93ef0000 - 0x00007ffa94b5a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ffae5a30000 - 0x00007ffae5ae2000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffae5020000 - 0x00007ffae50c9000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ffae36a0000 - 0x00007ffae36c8000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ffae5b70000 - 0x00007ffae5c84000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffae5af0000 - 0x00007ffae5b61000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ffadba00000 - 0x00007ffadba34000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ffae1ea0000 - 0x00007ffae1eed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffada000000 - 0x00007ffada00a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ffae1e80000 - 0x00007ffae1e93000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ffae2130000 - 0x00007ffae2148000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffadd060000 - 0x00007ffadd06a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ffae1540000 - 0x00007ffae1772000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffae4610000 - 0x00007ffae499d000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffae4b60000 - 0x00007ffae4c37000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ffac0c10000 - 0x00007ffac0c42000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffae36d0000 - 0x00007ffae374b000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ffadc450000 - 0x00007ffadc45e000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
0x00007ffacc130000 - 0x00007ffacc155000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
0x00007ffacea00000 - 0x00007ffacea18000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java -Daether.dependencyCollector.impl=bf
|
||||
java_command: c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-5f6066ead7fe3fd3b66fc97f0c938564-sock
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
uintx AdaptiveSizePolicyWeight = 90 {product} {command line}
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uintx GCTimeRatio = 4 {product} {command line}
|
||||
bool HeapDumpOnOutOfMemoryError = true {manageable} {command line}
|
||||
ccstr HeapDumpPath = c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java {manageable} {command line}
|
||||
size_t InitialHeapSize = 104857600 {product} {command line}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MaxNewSize = 357564416 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 524288 {product} {ergonomic}
|
||||
size_t MinHeapSize = 104857600 {product} {command line}
|
||||
size_t NewSize = 34603008 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
size_t OldSize = 70254592 {product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
bool UseParallelGC = true {product} {command line}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=off uptime,level,tags
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Program Files\Git\cmd;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 1 days 23:59 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (2538M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 5M)
|
||||
current process WorkingSet (physical memory assigned to process): 16M, peak: 16M
|
||||
current process commit charge ("private bytes"): 148M, peak: 149M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
805
hs_err_pid13660.log
Normal file
805
hs_err_pid13660.log
Normal file
@ -0,0 +1,805 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (malloc) failed to allocate 961856 bytes. Error detail: Chunk::new
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (arena.cpp:191), pid=13660, tid=20348
|
||||
#
|
||||
# JRE version: OpenJDK Runtime Environment Temurin-17.0.12+7 (17.0.12+7) (build 17.0.12+7)
|
||||
# Java VM: OpenJDK 64-Bit Server VM Temurin-17.0.12+7 (17.0.12+7, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java -Daether.dependencyCollector.impl=bf c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-1fe6b0c2c02127e8ac0b483a6e3d3005-sock
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 11 13:28:53 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 13.533946 seconds (0d 0h 0m 13s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000001a861fab560): JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=20348, stack(0x0000004c38000000,0x0000004c38100000)]
|
||||
|
||||
|
||||
Current CompileTask:
|
||||
C2: 13534 8311 % 4 org.eclipse.jdt.internal.core.search.indexing.BinaryIndexer::extractReferenceFromConstantPool @ 15 (358 bytes)
|
||||
|
||||
Stack: [0x0000004c38000000,0x0000004c38100000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0xac9d4]
|
||||
V [jvm.dll+0xad01c]
|
||||
V [jvm.dll+0x2af96f]
|
||||
V [jvm.dll+0x5868d7]
|
||||
V [jvm.dll+0x2231c2]
|
||||
V [jvm.dll+0x2235bf]
|
||||
V [jvm.dll+0x21c6e0]
|
||||
V [jvm.dll+0x219be1]
|
||||
V [jvm.dll+0x1a58bd]
|
||||
V [jvm.dll+0x229a2d]
|
||||
V [jvm.dll+0x227bdc]
|
||||
V [jvm.dll+0x7ec1f7]
|
||||
V [jvm.dll+0x7e65dc]
|
||||
V [jvm.dll+0x67e7f7]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x000001a8645899e0, length=61, elements={
|
||||
0x000001a8469641f0, 0x000001a85a7e8030, 0x000001a85a7e9360, 0x000001a85f92e280,
|
||||
0x000001a85f92ee10, 0x000001a85f944210, 0x000001a85f94a520, 0x000001a85f951570,
|
||||
0x000001a85f951e80, 0x000001a85f95f750, 0x000001a8469c7ab0, 0x000001a85fc6f7f0,
|
||||
0x000001a861a74380, 0x000001a8616ad9f0, 0x000001a861987850, 0x000001a862039060,
|
||||
0x000001a861bb7710, 0x000001a8620e5ec0, 0x000001a8620e7300, 0x000001a8620e4060,
|
||||
0x000001a8620e4f90, 0x000001a8620e54a0, 0x000001a8620e7810, 0x000001a8620e59b0,
|
||||
0x000001a8620e6df0, 0x000001a862846510, 0x000001a86283f5b0, 0x000001a862843270,
|
||||
0x000001a862842d60, 0x000001a862840f00, 0x000001a86283f0a0, 0x000001a8628455e0,
|
||||
0x000001a862846a20, 0x000001a862843c90, 0x000001a8628450d0, 0x000001a862841410,
|
||||
0x000001a8628441a0, 0x000001a86283fac0, 0x000001a8628446b0, 0x000001a862841920,
|
||||
0x000001a862841e30, 0x000001a862843780, 0x000001a862844bc0, 0x000001a86283ffd0,
|
||||
0x000001a862842340, 0x000001a862845af0, 0x000001a8628404e0, 0x000001a8628409f0,
|
||||
0x000001a862846000, 0x000001a8620e4a80, 0x000001a8633a46a0, 0x000001a8633a2840,
|
||||
0x000001a8633a9cb0, 0x000001a861fab560, 0x000001a861fabab0, 0x000001a8633a7430,
|
||||
0x000001a8633a4bb0, 0x000001a8633a3c80, 0x000001a8633a7940, 0x000001a8633a6500,
|
||||
0x000001a8633a7e50
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x000001a8469641f0 JavaThread "main" [_thread_blocked, id=2212, stack(0x0000004c36100000,0x0000004c36200000)]
|
||||
0x000001a85a7e8030 JavaThread "Reference Handler" daemon [_thread_blocked, id=10260, stack(0x0000004c36400000,0x0000004c36500000)]
|
||||
0x000001a85a7e9360 JavaThread "Finalizer" daemon [_thread_blocked, id=10044, stack(0x0000004c36500000,0x0000004c36600000)]
|
||||
0x000001a85f92e280 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8080, stack(0x0000004c36600000,0x0000004c36700000)]
|
||||
0x000001a85f92ee10 JavaThread "Attach Listener" daemon [_thread_blocked, id=3736, stack(0x0000004c36700000,0x0000004c36800000)]
|
||||
0x000001a85f944210 JavaThread "Service Thread" daemon [_thread_blocked, id=19568, stack(0x0000004c36800000,0x0000004c36900000)]
|
||||
0x000001a85f94a520 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=22316, stack(0x0000004c36900000,0x0000004c36a00000)]
|
||||
0x000001a85f951570 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=20164, stack(0x0000004c36a00000,0x0000004c36b00000)]
|
||||
0x000001a85f951e80 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=23504, stack(0x0000004c36b00000,0x0000004c36c00000)]
|
||||
0x000001a85f95f750 JavaThread "Sweeper thread" daemon [_thread_blocked, id=12836, stack(0x0000004c36c00000,0x0000004c36d00000)]
|
||||
0x000001a8469c7ab0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=12720, stack(0x0000004c36d00000,0x0000004c36e00000)]
|
||||
0x000001a85fc6f7f0 JavaThread "Notification Thread" daemon [_thread_blocked, id=9920, stack(0x0000004c36e00000,0x0000004c36f00000)]
|
||||
0x000001a861a74380 JavaThread "Active Thread: Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" [_thread_blocked, id=5240, stack(0x0000004c37800000,0x0000004c37900000)]
|
||||
0x000001a8616ad9f0 JavaThread "Framework Event Dispatcher: Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=16908, stack(0x0000004c37900000,0x0000004c37a00000)]
|
||||
0x000001a861987850 JavaThread "Start Level: Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=9240, stack(0x0000004c37a00000,0x0000004c37b00000)]
|
||||
0x000001a862039060 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=12888, stack(0x0000004c37c00000,0x0000004c37d00000)]
|
||||
0x000001a861bb7710 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=3804, stack(0x0000004c37f00000,0x0000004c38000000)]
|
||||
0x000001a8620e5ec0 JavaThread "Worker-JM" [_thread_blocked, id=19860, stack(0x0000004c37100000,0x0000004c37200000)]
|
||||
0x000001a8620e7300 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=20596, stack(0x0000004c38100000,0x0000004c38200000)]
|
||||
0x000001a8620e4060 JavaThread "Worker-0: Java indexing... " [_thread_blocked, id=14612, stack(0x0000004c38200000,0x0000004c38300000)]
|
||||
0x000001a8620e4f90 JavaThread "Worker-1" [_thread_blocked, id=20024, stack(0x0000004c38300000,0x0000004c38400000)]
|
||||
0x000001a8620e54a0 JavaThread "Worker-2: Publish Diagnostics" [_thread_in_Java, id=180, stack(0x0000004c38500000,0x0000004c38600000)]
|
||||
0x000001a8620e7810 JavaThread "Java indexing" daemon [_thread_in_Java, id=12332, stack(0x0000004c38600000,0x0000004c38700000)]
|
||||
0x000001a8620e59b0 JavaThread "Worker-3: Initialize workspace" [_thread_blocked, id=6808, stack(0x0000004c38700000,0x0000004c38800000)]
|
||||
0x000001a8620e6df0 JavaThread "Thread-2" daemon [_thread_in_native, id=14636, stack(0x0000004c38a00000,0x0000004c38b00000)]
|
||||
0x000001a862846510 JavaThread "Thread-3" daemon [_thread_in_native, id=20304, stack(0x0000004c38b00000,0x0000004c38c00000)]
|
||||
0x000001a86283f5b0 JavaThread "Thread-4" daemon [_thread_in_native, id=19780, stack(0x0000004c38c00000,0x0000004c38d00000)]
|
||||
0x000001a862843270 JavaThread "Thread-5" daemon [_thread_in_native, id=7512, stack(0x0000004c38d00000,0x0000004c38e00000)]
|
||||
0x000001a862842d60 JavaThread "Thread-6" daemon [_thread_in_native, id=1912, stack(0x0000004c38e00000,0x0000004c38f00000)]
|
||||
0x000001a862840f00 JavaThread "Thread-7" daemon [_thread_in_native, id=2264, stack(0x0000004c38f00000,0x0000004c39000000)]
|
||||
0x000001a86283f0a0 JavaThread "Thread-8" daemon [_thread_in_native, id=21552, stack(0x0000004c39000000,0x0000004c39100000)]
|
||||
0x000001a8628455e0 JavaThread "Thread-9" daemon [_thread_in_native, id=16724, stack(0x0000004c39100000,0x0000004c39200000)]
|
||||
0x000001a862846a20 JavaThread "Thread-10" daemon [_thread_in_native, id=6052, stack(0x0000004c39200000,0x0000004c39300000)]
|
||||
0x000001a862843c90 JavaThread "Thread-11" daemon [_thread_in_native, id=5832, stack(0x0000004c39300000,0x0000004c39400000)]
|
||||
0x000001a8628450d0 JavaThread "Thread-12" daemon [_thread_in_native, id=21088, stack(0x0000004c39400000,0x0000004c39500000)]
|
||||
0x000001a862841410 JavaThread "Thread-13" daemon [_thread_in_native, id=20168, stack(0x0000004c39500000,0x0000004c39600000)]
|
||||
0x000001a8628441a0 JavaThread "Thread-14" daemon [_thread_in_native, id=18984, stack(0x0000004c39600000,0x0000004c39700000)]
|
||||
0x000001a86283fac0 JavaThread "pool-2-thread-1" [_thread_blocked, id=10368, stack(0x0000004c39700000,0x0000004c39800000)]
|
||||
0x000001a8628446b0 JavaThread "WorkspaceEventsHandler" [_thread_blocked, id=20364, stack(0x0000004c39800000,0x0000004c39900000)]
|
||||
0x000001a862841920 JavaThread "pool-1-thread-1" [_thread_blocked, id=15204, stack(0x0000004c39900000,0x0000004c39a00000)]
|
||||
0x000001a862841e30 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=10180, stack(0x0000004c39a00000,0x0000004c39b00000)]
|
||||
0x000001a862843780 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=17548, stack(0x0000004c39b00000,0x0000004c39c00000)]
|
||||
0x000001a862844bc0 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=13336, stack(0x0000004c39c00000,0x0000004c39d00000)]
|
||||
0x000001a86283ffd0 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=13932, stack(0x0000004c39d00000,0x0000004c39e00000)]
|
||||
0x000001a862842340 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=15984, stack(0x0000004c39e00000,0x0000004c39f00000)]
|
||||
0x000001a862845af0 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=17516, stack(0x0000004c39f00000,0x0000004c3a000000)]
|
||||
0x000001a8628404e0 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=14956, stack(0x0000004c3a000000,0x0000004c3a100000)]
|
||||
0x000001a8628409f0 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=16876, stack(0x0000004c3a100000,0x0000004c3a200000)]
|
||||
0x000001a862846000 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=18564, stack(0x0000004c3a200000,0x0000004c3a300000)]
|
||||
0x000001a8620e4a80 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=15724, stack(0x0000004c3a300000,0x0000004c3a400000)]
|
||||
0x000001a8633a46a0 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=14652, stack(0x0000004c3a400000,0x0000004c3a500000)]
|
||||
0x000001a8633a2840 JavaThread "Equinox resolver thread - Equinox Container: 0c5e21da-a425-4d46-8084-2ccfc2800769" daemon [_thread_blocked, id=17680, stack(0x0000004c3a500000,0x0000004c3a600000)]
|
||||
0x000001a8633a9cb0 JavaThread "pool-3-thread-1" [_thread_blocked, id=16048, stack(0x0000004c37000000,0x0000004c37100000)]
|
||||
=>0x000001a861fab560 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=20348, stack(0x0000004c38000000,0x0000004c38100000)]
|
||||
0x000001a861fabab0 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=7940, stack(0x0000004c38400000,0x0000004c38500000)]
|
||||
0x000001a8633a7430 JavaThread "Worker-4: Processing JDT Change Events" [_thread_blocked, id=9412, stack(0x0000004c3a600000,0x0000004c3a700000)]
|
||||
0x000001a8633a4bb0 JavaThread "Worker-5: Building" [_thread_in_native, id=4152, stack(0x0000004c3a700000,0x0000004c3a800000)]
|
||||
0x000001a8633a3c80 JavaThread "Worker-6" [_thread_blocked, id=18600, stack(0x0000004c3a800000,0x0000004c3a900000)]
|
||||
0x000001a8633a7940 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_in_Java, id=17964, stack(0x0000004c3a900000,0x0000004c3aa00000)]
|
||||
0x000001a8633a6500 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_blocked, id=14772, stack(0x0000004c3aa00000,0x0000004c3ab00000)]
|
||||
0x000001a8633a7e50 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_blocked, id=23384, stack(0x0000004c3ab00000,0x0000004c3ac00000)]
|
||||
|
||||
Other Threads:
|
||||
0x000001a846a0e8e0 VMThread "VM Thread" [stack: 0x0000004c36300000,0x0000004c36400000] [id=23460]
|
||||
0x000001a85fc0dbd0 WatcherThread [stack: 0x0000004c36f00000,0x0000004c37000000] [id=12388]
|
||||
0x000001a846979410 GCTaskThread "GC Thread#0" [stack: 0x0000004c36200000,0x0000004c36300000] [id=3472]
|
||||
0x000001a8615f3900 GCTaskThread "GC Thread#1" [stack: 0x0000004c37200000,0x0000004c37300000] [id=15376]
|
||||
0x000001a86170da40 GCTaskThread "GC Thread#2" [stack: 0x0000004c37300000,0x0000004c37400000] [id=9964]
|
||||
0x000001a86170dd00 GCTaskThread "GC Thread#3" [stack: 0x0000004c37400000,0x0000004c37500000] [id=15176]
|
||||
0x000001a861645ce0 GCTaskThread "GC Thread#4" [stack: 0x0000004c37500000,0x0000004c37600000] [id=14208]
|
||||
0x000001a861645fa0 GCTaskThread "GC Thread#5" [stack: 0x0000004c37600000,0x0000004c37700000] [id=12688]
|
||||
0x000001a861646260 GCTaskThread "GC Thread#6" [stack: 0x0000004c37700000,0x0000004c37800000] [id=20868]
|
||||
0x000001a861229290 GCTaskThread "GC Thread#7" [stack: 0x0000004c37b00000,0x0000004c37c00000] [id=12600]
|
||||
0x000001a861bbae60 GCTaskThread "GC Thread#8" [stack: 0x0000004c37d00000,0x0000004c37e00000] [id=15548]
|
||||
0x000001a861fa0910 GCTaskThread "GC Thread#9" [stack: 0x0000004c37e00000,0x0000004c37f00000] [id=1632]
|
||||
|
||||
Threads with active compile tasks:
|
||||
C2 CompilerThread0 13575 8180 4 org.eclipse.jdt.internal.core.JarPackageFragmentRoot::initRawPackageInfo (342 bytes)
|
||||
C2 CompilerThread1 13575 8311 % 4 org.eclipse.jdt.internal.core.search.indexing.BinaryIndexer::extractReferenceFromConstantPool @ 15 (358 bytes)
|
||||
C2 CompilerThread2 13575 7021 4 org.eclipse.jdt.internal.compiler.util.JrtFileSystem$2::visitFile (10 bytes)
|
||||
|
||||
VM state: not at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: None
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) not mapped
|
||||
Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000
|
||||
|
||||
GC Precious Log:
|
||||
CPUs: 12 total, 12 available
|
||||
Memory: 16251M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (32-bit)
|
||||
Alignments: Space 512K, Generation 512K, Heap 2M
|
||||
Heap Min Capacity: 100M
|
||||
Heap Initial Capacity: 100M
|
||||
Heap Max Capacity: 1G
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 10
|
||||
|
||||
Heap:
|
||||
PSYoungGen total 22016K, used 5629K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 20480K, 22% used [0x00000000eab00000,0x00000000eaf90b08,0x00000000ebf00000)
|
||||
from space 1536K, 62% used [0x00000000ebf80000,0x00000000ec06eaf0,0x00000000ec100000)
|
||||
to space 1024K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec200000)
|
||||
ParOldGen total 169472K, used 135437K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 79% used [0x00000000c0000000,0x00000000c8443538,0x00000000ca580000)
|
||||
Metaspace used 64260K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
|
||||
Card table byte_map: [0x000001a846320000,0x000001a846530000] _byte_map_base: 0x000001a845d20000
|
||||
|
||||
Marking Bits: (ParMarkBitMap*) 0x00007ffa94a958b0
|
||||
Begin Bits: [0x000001a8585f0000, 0x000001a8595f0000)
|
||||
End Bits: [0x000001a8595f0000, 0x000001a85a5f0000)
|
||||
|
||||
Polling page: 0x000001a846110000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 56.11 MB used.
|
||||
Class: 6.65 MB used.
|
||||
Both: 62.75 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 56.75 MB ( 89%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 7.12 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 63.88 MB ( 6%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 7.19 MB
|
||||
Class: 8.69 MB
|
||||
Both: 15.88 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 106.50 MB
|
||||
CDS: off
|
||||
MetaspaceReclaimPolicy: balanced
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- new_chunks_are_fully_committed: 0.
|
||||
- uncommit_free_chunks: 1.
|
||||
- use_allocation_guard: 0.
|
||||
- handle_deallocations: 1.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 9.
|
||||
num_arena_births: 636.
|
||||
num_arena_deaths: 14.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 1022.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 23.
|
||||
num_chunks_taken_from_freelist: 3171.
|
||||
num_chunk_merges: 15.
|
||||
num_chunk_splits: 2022.
|
||||
num_chunks_enlarged: 1216.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=120000Kb used=3796Kb max_used=4219Kb free=116203Kb
|
||||
bounds [0x000001a8510c0000, 0x000001a8514e0000, 0x000001a8585f0000]
|
||||
CodeHeap 'profiled nmethods': size=120000Kb used=14584Kb max_used=15719Kb free=105415Kb
|
||||
bounds [0x000001a8495f0000, 0x000001a84a560000, 0x000001a850b20000]
|
||||
CodeHeap 'non-nmethods': size=5760Kb used=1354Kb max_used=1458Kb free=4405Kb
|
||||
bounds [0x000001a850b20000, 0x000001a850d90000, 0x000001a8510c0000]
|
||||
total_blobs=7514 nmethods=6815 adapters=613
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 13.371 Thread 0x000001a85f951e80 8349 2 java.util.regex.Pattern$CharPropertyGreedy::study (45 bytes)
|
||||
Event: 13.371 Thread 0x000001a85f951e80 nmethod 8349 0x000001a84a394810 code [0x000001a84a3949a0, 0x000001a84a394b08]
|
||||
Event: 13.447 Thread 0x000001a85f951e80 8350 2 org.eclipse.jdt.internal.core.JarPackageFragmentRoot::getJar (11 bytes)
|
||||
Event: 13.448 Thread 0x000001a85f951e80 nmethod 8350 0x000001a84a3a5210 code [0x000001a84a3a53c0, 0x000001a84a3a55e8]
|
||||
Event: 13.448 Thread 0x000001a85f951e80 8351 3 org.eclipse.jdt.internal.core.JarPackageFragmentRoot::equals (55 bytes)
|
||||
Event: 13.448 Thread 0x000001a85f951e80 nmethod 8351 0x000001a84a234c90 code [0x000001a84a234e80, 0x000001a84a235398]
|
||||
Event: 13.449 Thread 0x000001a861fabab0 nmethod 8335 0x000001a851386b10 code [0x000001a851386da0, 0x000001a851388908]
|
||||
Event: 13.449 Thread 0x000001a861fabab0 6889 4 jdk.internal.jrtfs.JrtFileSystem$$Lambda$421/0x0000000100618000::apply (16 bytes)
|
||||
Event: 13.449 Thread 0x000001a861fabab0 nmethod 6889 0x000001a851433590 code [0x000001a851433720, 0x000001a851433828]
|
||||
Event: 13.449 Thread 0x000001a861fabab0 7021 4 org.eclipse.jdt.internal.compiler.util.JrtFileSystem$2::visitFile (10 bytes)
|
||||
Event: 13.457 Thread 0x000001a85f951e80 8353 2 org.eclipse.core.runtime.Path::removeFirstSegments (91 bytes)
|
||||
Event: 13.459 Thread 0x000001a85f951e80 nmethod 8353 0x000001a84a3ab090 code [0x000001a84a3ab280, 0x000001a84a3ab678]
|
||||
Event: 13.460 Thread 0x000001a85f951e80 8354 1 org.eclipse.jdt.internal.compiler.classfmt.ModuleInfo$PackageExportInfo::name (5 bytes)
|
||||
Event: 13.460 Thread 0x000001a85f951e80 nmethod 8354 0x000001a851433290 code [0x000001a851433420, 0x000001a8514334f8]
|
||||
Event: 13.463 Thread 0x000001a85f951e80 8355 2 java.util.KeyValueHolder::<init> (21 bytes)
|
||||
Event: 13.463 Thread 0x000001a85f951e80 nmethod 8355 0x000001a84a071510 code [0x000001a84a0716c0, 0x000001a84a071978]
|
||||
Event: 13.485 Thread 0x000001a85f951e80 8356 2 org.eclipse.jdt.internal.core.JarEntryResource::<init> (10 bytes)
|
||||
Event: 13.485 Thread 0x000001a85f951e80 nmethod 8356 0x000001a84a234910 code [0x000001a84a234aa0, 0x000001a84a234bb8]
|
||||
Event: 13.485 Thread 0x000001a85f951e80 8357 ! 2 org.eclipse.jdt.internal.core.OverflowingLRUCache::makeSpace (139 bytes)
|
||||
Event: 13.486 Thread 0x000001a85f951e80 nmethod 8357 0x000001a84a070e10 code [0x000001a84a070fe0, 0x000001a84a0712e8]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 13.345 GC heap before
|
||||
{Heap before GC invocations=151 (full 6):
|
||||
PSYoungGen total 20480K, used 20406K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 19456K, 100% used [0x00000000eab00000,0x00000000ebe00000,0x00000000ebe00000)
|
||||
from space 1024K, 92% used [0x00000000ebe00000,0x00000000ebeed9a0,0x00000000ebf00000)
|
||||
to space 1024K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec180000)
|
||||
ParOldGen total 133120K, used 130595K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 98% used [0x00000000c0000000,0x00000000c7f88dd0,0x00000000c8200000)
|
||||
Metaspace used 64215K, committed 65408K, reserved 1114112K
|
||||
class space used 6804K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.346 GC heap after
|
||||
{Heap after GC invocations=151 (full 6):
|
||||
PSYoungGen total 20480K, used 1023K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 19456K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebe00000)
|
||||
from space 1024K, 99% used [0x00000000ec080000,0x00000000ec17fed0,0x00000000ec180000)
|
||||
to space 1536K, 0% used [0x00000000ebe80000,0x00000000ebe80000,0x00000000ec000000)
|
||||
ParOldGen total 133120K, used 131370K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 98% used [0x00000000c0000000,0x00000000c804a858,0x00000000c8200000)
|
||||
Metaspace used 64215K, committed 65408K, reserved 1114112K
|
||||
class space used 6804K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.361 GC heap before
|
||||
{Heap before GC invocations=152 (full 6):
|
||||
PSYoungGen total 20480K, used 20479K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 19456K, 100% used [0x00000000eab00000,0x00000000ebe00000,0x00000000ebe00000)
|
||||
from space 1024K, 99% used [0x00000000ec080000,0x00000000ec17fed0,0x00000000ec180000)
|
||||
to space 1536K, 0% used [0x00000000ebe80000,0x00000000ebe80000,0x00000000ec000000)
|
||||
ParOldGen total 133120K, used 131370K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 98% used [0x00000000c0000000,0x00000000c804a858,0x00000000c8200000)
|
||||
Metaspace used 64258K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.363 GC heap after
|
||||
{Heap after GC invocations=152 (full 6):
|
||||
PSYoungGen total 20992K, used 959K [0x00000000eab00000, 0x00000000ec100000, 0x0000000100000000)
|
||||
eden space 19456K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebe00000)
|
||||
from space 1536K, 62% used [0x00000000ebe80000,0x00000000ebf6fdd0,0x00000000ec000000)
|
||||
to space 1024K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec100000)
|
||||
ParOldGen total 133120K, used 132108K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 99% used [0x00000000c0000000,0x00000000c8103298,0x00000000c8200000)
|
||||
Metaspace used 64258K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.375 GC heap before
|
||||
{Heap before GC invocations=153 (full 6):
|
||||
PSYoungGen total 20992K, used 20415K [0x00000000eab00000, 0x00000000ec100000, 0x0000000100000000)
|
||||
eden space 19456K, 100% used [0x00000000eab00000,0x00000000ebe00000,0x00000000ebe00000)
|
||||
from space 1536K, 62% used [0x00000000ebe80000,0x00000000ebf6fdd0,0x00000000ec000000)
|
||||
to space 1024K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec100000)
|
||||
ParOldGen total 133120K, used 132108K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 99% used [0x00000000c0000000,0x00000000c8103298,0x00000000c8200000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.377 GC heap after
|
||||
{Heap after GC invocations=153 (full 6):
|
||||
PSYoungGen total 20480K, used 715K [0x00000000eab00000, 0x00000000ec100000, 0x0000000100000000)
|
||||
eden space 19456K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebe00000)
|
||||
from space 1024K, 69% used [0x00000000ec000000,0x00000000ec0b2db0,0x00000000ec100000)
|
||||
to space 1024K, 0% used [0x00000000ebf00000,0x00000000ebf00000,0x00000000ec000000)
|
||||
ParOldGen total 133120K, used 132915K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 99% used [0x00000000c0000000,0x00000000c81ccc68,0x00000000c8200000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.377 GC heap before
|
||||
{Heap before GC invocations=154 (full 7):
|
||||
PSYoungGen total 20480K, used 715K [0x00000000eab00000, 0x00000000ec100000, 0x0000000100000000)
|
||||
eden space 19456K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebe00000)
|
||||
from space 1024K, 69% used [0x00000000ec000000,0x00000000ec0b2db0,0x00000000ec100000)
|
||||
to space 1024K, 0% used [0x00000000ebf00000,0x00000000ebf00000,0x00000000ec000000)
|
||||
ParOldGen total 133120K, used 132915K [0x00000000c0000000, 0x00000000c8200000, 0x00000000eab00000)
|
||||
object space 133120K, 99% used [0x00000000c0000000,0x00000000c81ccc68,0x00000000c8200000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.445 GC heap after
|
||||
{Heap after GC invocations=154 (full 7):
|
||||
PSYoungGen total 21504K, used 0K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1024K, 0% used [0x00000000ebf00000,0x00000000ebf00000,0x00000000ec000000)
|
||||
to space 1024K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ec280000)
|
||||
ParOldGen total 169472K, used 128389K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 75% used [0x00000000c0000000,0x00000000c7d617f8,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.457 GC heap before
|
||||
{Heap before GC invocations=155 (full 7):
|
||||
PSYoungGen total 21504K, used 20480K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 20480K, 100% used [0x00000000eab00000,0x00000000ebf00000,0x00000000ebf00000)
|
||||
from space 1024K, 0% used [0x00000000ebf00000,0x00000000ebf00000,0x00000000ec000000)
|
||||
to space 1024K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ec280000)
|
||||
ParOldGen total 169472K, used 128389K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 75% used [0x00000000c0000000,0x00000000c7d617f8,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.459 GC heap after
|
||||
{Heap after GC invocations=155 (full 7):
|
||||
PSYoungGen total 21504K, used 1005K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1024K, 98% used [0x00000000ec180000,0x00000000ec27b508,0x00000000ec280000)
|
||||
to space 1536K, 0% used [0x00000000ebf80000,0x00000000ebf80000,0x00000000ec100000)
|
||||
ParOldGen total 169472K, used 128397K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 75% used [0x00000000c0000000,0x00000000c7d637f8,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.471 GC heap before
|
||||
{Heap before GC invocations=156 (full 7):
|
||||
PSYoungGen total 21504K, used 21485K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 20480K, 100% used [0x00000000eab00000,0x00000000ebf00000,0x00000000ebf00000)
|
||||
from space 1024K, 98% used [0x00000000ec180000,0x00000000ec27b508,0x00000000ec280000)
|
||||
to space 1536K, 0% used [0x00000000ebf80000,0x00000000ebf80000,0x00000000ec100000)
|
||||
ParOldGen total 169472K, used 128397K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 75% used [0x00000000c0000000,0x00000000c7d637f8,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.472 GC heap after
|
||||
{Heap after GC invocations=156 (full 7):
|
||||
PSYoungGen total 22016K, used 1534K [0x00000000eab00000, 0x00000000ec400000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1536K, 99% used [0x00000000ebf80000,0x00000000ec0ffbe8,0x00000000ec100000)
|
||||
to space 2560K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ec400000)
|
||||
ParOldGen total 169472K, used 128770K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 75% used [0x00000000c0000000,0x00000000c7dc0910,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.483 GC heap before
|
||||
{Heap before GC invocations=157 (full 7):
|
||||
PSYoungGen total 22016K, used 22014K [0x00000000eab00000, 0x00000000ec400000, 0x0000000100000000)
|
||||
eden space 20480K, 100% used [0x00000000eab00000,0x00000000ebf00000,0x00000000ebf00000)
|
||||
from space 1536K, 99% used [0x00000000ebf80000,0x00000000ec0ffbe8,0x00000000ec100000)
|
||||
to space 2560K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ec400000)
|
||||
ParOldGen total 169472K, used 128770K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 75% used [0x00000000c0000000,0x00000000c7dc0910,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.484 GC heap after
|
||||
{Heap after GC invocations=157 (full 7):
|
||||
PSYoungGen total 21504K, used 807K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1024K, 78% used [0x00000000ec180000,0x00000000ec249e88,0x00000000ec280000)
|
||||
to space 1536K, 0% used [0x00000000ebf80000,0x00000000ebf80000,0x00000000ec100000)
|
||||
ParOldGen total 169472K, used 130270K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 76% used [0x00000000c0000000,0x00000000c7f37980,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.497 GC heap before
|
||||
{Heap before GC invocations=158 (full 7):
|
||||
PSYoungGen total 21504K, used 21287K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 20480K, 100% used [0x00000000eab00000,0x00000000ebf00000,0x00000000ebf00000)
|
||||
from space 1024K, 78% used [0x00000000ec180000,0x00000000ec249e88,0x00000000ec280000)
|
||||
to space 1536K, 0% used [0x00000000ebf80000,0x00000000ebf80000,0x00000000ec100000)
|
||||
ParOldGen total 169472K, used 130270K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 76% used [0x00000000c0000000,0x00000000c7f37980,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.499 GC heap after
|
||||
{Heap after GC invocations=158 (full 7):
|
||||
PSYoungGen total 22016K, used 949K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1536K, 61% used [0x00000000ebf80000,0x00000000ec06d758,0x00000000ec100000)
|
||||
to space 1024K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec200000)
|
||||
ParOldGen total 169472K, used 130937K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 77% used [0x00000000c0000000,0x00000000c7fde720,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.510 GC heap before
|
||||
{Heap before GC invocations=159 (full 7):
|
||||
PSYoungGen total 22016K, used 21429K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 20480K, 100% used [0x00000000eab00000,0x00000000ebf00000,0x00000000ebf00000)
|
||||
from space 1536K, 61% used [0x00000000ebf80000,0x00000000ec06d758,0x00000000ec100000)
|
||||
to space 1024K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec200000)
|
||||
ParOldGen total 169472K, used 130937K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 77% used [0x00000000c0000000,0x00000000c7fde720,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.512 GC heap after
|
||||
{Heap after GC invocations=159 (full 7):
|
||||
PSYoungGen total 21504K, used 818K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1024K, 79% used [0x00000000ec100000,0x00000000ec1cc9e0,0x00000000ec200000)
|
||||
to space 1536K, 0% used [0x00000000ebf80000,0x00000000ebf80000,0x00000000ec100000)
|
||||
ParOldGen total 169472K, used 131739K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 77% used [0x00000000c0000000,0x00000000c80a6ff8,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.523 GC heap before
|
||||
{Heap before GC invocations=160 (full 7):
|
||||
PSYoungGen total 21504K, used 21298K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 20480K, 100% used [0x00000000eab00000,0x00000000ebf00000,0x00000000ebf00000)
|
||||
from space 1024K, 79% used [0x00000000ec100000,0x00000000ec1cc9e0,0x00000000ec200000)
|
||||
to space 1536K, 0% used [0x00000000ebf80000,0x00000000ebf80000,0x00000000ec100000)
|
||||
ParOldGen total 169472K, used 131739K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 77% used [0x00000000c0000000,0x00000000c80a6ff8,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
Event: 13.525 GC heap after
|
||||
{Heap after GC invocations=160 (full 7):
|
||||
PSYoungGen total 22016K, used 1040K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 20480K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ebf00000)
|
||||
from space 1536K, 67% used [0x00000000ebf80000,0x00000000ec084280,0x00000000ec100000)
|
||||
to space 1024K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec200000)
|
||||
ParOldGen total 169472K, used 132435K [0x00000000c0000000, 0x00000000ca580000, 0x00000000eab00000)
|
||||
object space 169472K, 78% used [0x00000000c0000000,0x00000000c8154f00,0x00000000ca580000)
|
||||
Metaspace used 64259K, committed 65408K, reserved 1114112K
|
||||
class space used 6808K, committed 7296K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (10 events):
|
||||
Event: 0.018 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
Event: 0.136 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.141 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
Event: 0.152 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
Event: 0.155 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
Event: 0.160 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.171 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
Event: 0.235 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
Event: 1.267 Loaded shared library C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
Event: 2.456 Loaded shared library C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna14797759831389526940.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 13.243 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.243 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.248 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.248 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.289 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.289 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.309 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.309 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.335 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.336 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.340 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.340 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.368 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.368 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.457 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.457 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.479 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.479 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
Event: 13.519 Thread 0x000001a8620e7810 DEOPT PACKING pc=0x000001a84a3af393 sp=0x0000004c386fe980
|
||||
Event: 13.519 Thread 0x000001a8620e7810 DEOPT UNPACKING pc=0x000001a850b76e43 sp=0x0000004c386fdee8 mode 0
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 10.811 Loading class java/util/Hashtable$KeySet
|
||||
Event: 10.811 Loading class java/util/Hashtable$KeySet done
|
||||
Event: 10.931 Loading class java/util/Vector$1
|
||||
Event: 10.931 Loading class java/util/Vector$1 done
|
||||
Event: 11.528 Loading class java/util/regex/Pattern$Caret
|
||||
Event: 11.528 Loading class java/util/regex/Pattern$Caret done
|
||||
Event: 12.053 Loading class java/util/Hashtable$ValueCollection
|
||||
Event: 12.053 Loading class java/util/Hashtable$ValueCollection done
|
||||
Event: 12.244 Loading class java/util/concurrent/CompletableFuture$UniApply
|
||||
Event: 12.244 Loading class java/util/concurrent/CompletableFuture$UniApply done
|
||||
Event: 12.249 Loading class java/util/concurrent/ForkJoinPool$DefaultCommonPoolForkJoinWorkerThreadFactory$1
|
||||
Event: 12.249 Loading class java/util/concurrent/ForkJoinPool$DefaultCommonPoolForkJoinWorkerThreadFactory$1 done
|
||||
Event: 12.249 Loading class java/util/concurrent/CompletableFuture$UniExceptionally
|
||||
Event: 12.249 Loading class java/util/concurrent/CompletableFuture$UniExceptionally done
|
||||
Event: 12.717 Loading class java/io/FileReader
|
||||
Event: 12.717 Loading class java/io/FileReader done
|
||||
Event: 12.718 Loading class java/lang/UnsupportedClassVersionError
|
||||
Event: 12.718 Loading class java/lang/UnsupportedClassVersionError done
|
||||
Event: 12.728 Loading class jdk/internal/reflect/UnsafeQualifiedStaticIntegerFieldAccessorImpl
|
||||
Event: 12.728 Loading class jdk/internal/reflect/UnsafeQualifiedStaticIntegerFieldAccessorImpl done
|
||||
|
||||
Classes unloaded (7 events):
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x0000000100250400 'java/lang/invoke/LambdaForm$MH+0x0000000100250400'
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x0000000100250000 'java/lang/invoke/LambdaForm$MH+0x0000000100250000'
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x000000010024bc00 'java/lang/invoke/LambdaForm$MH+0x000000010024bc00'
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x000000010024b800 'java/lang/invoke/LambdaForm$MH+0x000000010024b800'
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x000000010024b400 'java/lang/invoke/LambdaForm$BMH+0x000000010024b400'
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x000000010024b000 'java/lang/invoke/LambdaForm$DMH+0x000000010024b000'
|
||||
Event: 3.991 Thread 0x000001a846a0e8e0 Unloading class 0x0000000100248400 'java/lang/invoke/LambdaForm$DMH+0x0000000100248400'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 13.023 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eacc9e88}> (0x00000000eacc9e88)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.035 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb795530}> (0x00000000eb795530)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.035 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb795c10}> (0x00000000eb795c10)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.050 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb5fcab0}> (0x00000000eb5fcab0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.050 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb5fd190}> (0x00000000eb5fd190)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.051 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb5fde70}> (0x00000000eb5fde70)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.051 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb686cd0}> (0x00000000eb686cd0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.062 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb178fd0}> (0x00000000eb178fd0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.062 Thread 0x000001a8620e59b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb1796b0}> (0x00000000eb1796b0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.081 Thread 0x000001a8633a4bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb28a148}> (0x00000000eb28a148)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.081 Thread 0x000001a8633a4bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb2b8a80}> (0x00000000eb2b8a80)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.097 Thread 0x000001a8633a4bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb0463c0}> (0x00000000eb0463c0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.097 Thread 0x000001a8633a4bb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb088650}> (0x00000000eb088650)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.127 Thread 0x000001a8633a4bb0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000eacf5530}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000eacf5530)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 13.148 Thread 0x000001a8633a4bb0 Exception <a 'java/io/FileNotFoundException'{0x00000000eaf88ef0}> (0x00000000eaf88ef0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.148 Thread 0x000001a8633a4bb0 Exception <a 'java/io/FileNotFoundException'{0x00000000eaf8a338}> (0x00000000eaf8a338)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.149 Thread 0x000001a8633a4bb0 Exception <a 'java/io/FileNotFoundException'{0x00000000eb0e4af0}> (0x00000000eb0e4af0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.149 Thread 0x000001a8633a4bb0 Exception <a 'java/io/FileNotFoundException'{0x00000000eb0e63a8}> (0x00000000eb0e63a8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.149 Thread 0x000001a8633a4bb0 Exception <a 'java/io/FileNotFoundException'{0x00000000eb124a70}> (0x00000000eb124a70)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 13.207 Thread 0x000001a8633a7940 Exception <a 'java/lang/IncompatibleClassChangeError'{0x00000000eb4a4168}: Found class java.lang.Object, but interface was expected> (0x00000000eb4a4168)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 826]
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 13.326 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.329 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.345 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.346 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.361 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.364 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.375 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.446 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.457 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.459 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.471 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.472 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.482 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.484 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.497 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.499 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.510 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.512 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 13.523 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 13.525 Executing VM operation: ParallelGCFailedAllocation done
|
||||
|
||||
Events (20 events):
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a41a690
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a41c610
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a429210
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a42a610
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a42ec10
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a42f410
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a431f90
|
||||
Event: 12.188 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a446610
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a468190
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a469090
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a4c0b90
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a4c3290
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a4c3d10
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a4c7e90
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a4d0a10
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a4ec210
|
||||
Event: 12.189 Thread 0x000001a85f95f750 flushing nmethod 0x000001a84a513b10
|
||||
Event: 12.249 Thread 0x000001a8633a7940 Thread added: 0x000001a8633a7940
|
||||
Event: 12.310 Thread 0x000001a8633a6500 Thread added: 0x000001a8633a6500
|
||||
Event: 12.697 Thread 0x000001a8633a7e50 Thread added: 0x000001a8633a7e50
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff66a7a0000 - 0x00007ff66a7ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffae5cf0000 - 0x00007ffae5f07000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ffae3ef0000 - 0x00007ffae3fb4000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ffae3010000 - 0x00007ffae33bd000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ffae33c0000 - 0x00007ffae34d1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ffadbaa0000 - 0x00007ffadbab7000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ffadba80000 - 0x00007ffadba9b000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffae3bf0000 - 0x00007ffae3d9e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ffae34e0000 - 0x00007ffae3506000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ffae4db0000 - 0x00007ffae4dd9000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ffae3510000 - 0x00007ffae3629000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ffae3750000 - 0x00007ffae37ea000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ffacb330000 - 0x00007ffacb5c3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ffae3b40000 - 0x00007ffae3be7000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ffae3a30000 - 0x00007ffae3a61000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ffadfc30000 - 0x00007ffadfc3c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ffaacf90000 - 0x00007ffaad01d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ffa93ef0000 - 0x00007ffa94b5a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ffae5a30000 - 0x00007ffae5ae2000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffae5020000 - 0x00007ffae50c9000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ffae36a0000 - 0x00007ffae36c8000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ffae5b70000 - 0x00007ffae5c84000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffae5af0000 - 0x00007ffae5b61000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ffae1ea0000 - 0x00007ffae1eed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffadba00000 - 0x00007ffadba34000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ffada000000 - 0x00007ffada00a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ffae1e80000 - 0x00007ffae1e93000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ffae2130000 - 0x00007ffae2148000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffadd060000 - 0x00007ffadd06a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ffae1540000 - 0x00007ffae1772000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffae4610000 - 0x00007ffae499d000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffae4b60000 - 0x00007ffae4c37000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ffac0c10000 - 0x00007ffac0c42000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffae36d0000 - 0x00007ffae374b000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ffadc450000 - 0x00007ffadc45e000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
0x00007ffacc130000 - 0x00007ffacc155000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
0x00007ffacea00000 - 0x00007ffacea18000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
0x00007ffae50d0000 - 0x00007ffae5938000 C:\WINDOWS\System32\SHELL32.dll
|
||||
0x00007ffae0b80000 - 0x00007ffae147e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||
0x00007ffae0a40000 - 0x00007ffae0b7f000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||
0x00007ffae3da0000 - 0x00007ffae3e99000 C:\WINDOWS\System32\SHCORE.dll
|
||||
0x00007ffae3ae0000 - 0x00007ffae3b3e000 C:\WINDOWS\System32\shlwapi.dll
|
||||
0x00007ffae2f40000 - 0x00007ffae2f61000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||
0x00007ffacbbf0000 - 0x00007ffacbc09000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
0x00007ffadbcf0000 - 0x00007ffadbe26000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
|
||||
0x00007ffae25a0000 - 0x00007ffae2609000 C:\WINDOWS\system32\mswsock.dll
|
||||
0x00007ffaca810000 - 0x00007ffaca826000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
0x00007ffadba70000 - 0x00007ffadba80000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
0x00007ffacdfb0000 - 0x00007ffacdff5000 C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
0x00007ffae3fc0000 - 0x00007ffae4165000 C:\WINDOWS\System32\ole32.dll
|
||||
0x00007ffae2800000 - 0x00007ffae281b000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ffae2090000 - 0x00007ffae20c5000 C:\WINDOWS\system32\rsaenh.dll
|
||||
0x00007ffae26a0000 - 0x00007ffae26c8000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||
0x00007ffae2820000 - 0x00007ffae282c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ffae1b40000 - 0x00007ffae1b6d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffae4aa0000 - 0x00007ffae4aa9000 C:\WINDOWS\System32\NSI.dll
|
||||
0x00007ffadbc50000 - 0x00007ffadbc69000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||
0x00007ffadba40000 - 0x00007ffadba5f000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||
0x00007ffae1bb0000 - 0x00007ffae1ca8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||
0x00007ffaaf650000 - 0x00007ffaaf695000 C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna14797759831389526940.dll
|
||||
0x00007ffae4c40000 - 0x00007ffae4c48000 C:\WINDOWS\System32\PSAPI.DLL
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server;C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106;C:\Users\dy20240402\AppData\Local\Temp\jna-242497435
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java -Daether.dependencyCollector.impl=bf
|
||||
java_command: c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-1fe6b0c2c02127e8ac0b483a6e3d3005-sock
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
uintx AdaptiveSizePolicyWeight = 90 {product} {command line}
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uintx GCTimeRatio = 4 {product} {command line}
|
||||
bool HeapDumpOnOutOfMemoryError = true {manageable} {command line}
|
||||
ccstr HeapDumpPath = c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java {manageable} {command line}
|
||||
size_t InitialHeapSize = 104857600 {product} {command line}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MaxNewSize = 357564416 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 524288 {product} {ergonomic}
|
||||
size_t MinHeapSize = 104857600 {product} {command line}
|
||||
size_t NewSize = 34603008 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
size_t OldSize = 70254592 {product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
bool UseParallelGC = true {product} {command line}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=off uptime,level,tags
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Program Files\Git\cmd;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 1 days 23:59 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (2267M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 5M)
|
||||
current process WorkingSet (physical memory assigned to process): 416M, peak: 416M
|
||||
current process commit charge ("private bytes"): 455M, peak: 459M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
230
hs_err_pid15948.log
Normal file
230
hs_err_pid15948.log
Normal file
@ -0,0 +1,230 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (mmap) failed to map 4161536 bytes. Error detail: G1 virtual space
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (os_windows.cpp:3613), pid=15948, tid=22496
|
||||
#
|
||||
# JRE version: (17.0.12+7) (build )
|
||||
# Java VM: OpenJDK 64-Bit Server VM (17.0.12+7, mixed mode, emulated-client, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: -Xmx1024m -Dsts.lsp.client=vscode -Dsts.log.file=/dev/null -XX:TieredStopAtLevel=1 -Xlog:jni+resolve=off -Dspring.config.location=file:c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes\application.properties org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 4 12:04:14 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 0.019011 seconds (0d 0h 0m 0s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000001c4af852af0): JavaThread "Unknown thread" [_thread_in_vm, id=22496, stack(0x0000001e41400000,0x0000001e41500000)]
|
||||
|
||||
Stack: [0x0000001e41400000,0x0000001e41500000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0x67c6e9]
|
||||
V [jvm.dll+0x6711aa]
|
||||
V [jvm.dll+0x307f7b]
|
||||
V [jvm.dll+0x30f476]
|
||||
V [jvm.dll+0x35f668]
|
||||
V [jvm.dll+0x35f87f]
|
||||
V [jvm.dll+0x2def9c]
|
||||
V [jvm.dll+0x2dfef4]
|
||||
V [jvm.dll+0x808a4b]
|
||||
V [jvm.dll+0x36d3b1]
|
||||
V [jvm.dll+0x7e7425]
|
||||
V [jvm.dll+0x3f0edf]
|
||||
V [jvm.dll+0x3f2a31]
|
||||
C [jli.dll+0x528f]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x00007ff986bd6f18, length=0, elements={
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
|
||||
Other Threads:
|
||||
0x000001c4af8921d0 GCTaskThread "GC Thread#0" [stack: 0x0000001e41500000,0x0000001e41600000] [id=3900]
|
||||
0x000001c4af89c040 ConcurrentGCThread "G1 Main Marker" [stack: 0x0000001e41600000,0x0000001e41700000] [id=21516]
|
||||
0x000001c4af89d110 ConcurrentGCThread "G1 Conc#0" [stack: 0x0000001e41700000,0x0000001e41800000] [id=12984]
|
||||
|
||||
[error occurred during error reporting (printing all threads), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff98638f697]
|
||||
|
||||
VM state: not at safepoint (not fully initialized)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||
[0x000001c4af851880] Heap_lock - owner thread: 0x000001c4af852af0
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) mapped at: [0x0000000000000000-0x0000000000000000-0x0000000000000000), size 0, SharedBaseAddress: 0x0000000800000000, ArchiveRelocationMode: 1.
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0x0
|
||||
|
||||
GC Precious Log:
|
||||
<Empty>
|
||||
|
||||
Heap:
|
||||
garbage-first heap total 0K, used 0K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
|
||||
[error occurred during error reporting (printing heap information), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff986778bf9]
|
||||
|
||||
GC Heap History (0 events):
|
||||
No events
|
||||
|
||||
Dll operation events (1 events):
|
||||
Event: 0.013 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
|
||||
Deoptimization events (0 events):
|
||||
No events
|
||||
|
||||
Classes loaded (0 events):
|
||||
No events
|
||||
|
||||
Classes unloaded (0 events):
|
||||
No events
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (0 events):
|
||||
No events
|
||||
|
||||
VM Operations (0 events):
|
||||
No events
|
||||
|
||||
Events (0 events):
|
||||
No events
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff6d4f60000 - 0x00007ff6d4f6e000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffa01890000 - 0x00007ffa01aa7000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ff9ff680000 - 0x00007ff9ff744000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ff9ff0d0000 - 0x00007ff9ff47d000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ff9febb0000 - 0x00007ff9fecc1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ff9ee860000 - 0x00007ff9ee877000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ff9ee8d0000 - 0x00007ff9ee8eb000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffa00960000 - 0x00007ffa00b0e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ff9fee90000 - 0x00007ff9feeb6000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ff9ffd00000 - 0x00007ff9ffd29000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ff9fecd0000 - 0x00007ff9fede9000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ff9feec0000 - 0x00007ff9fef5a000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ff9e0950000 - 0x00007ff9e0be3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ff9ffbb0000 - 0x00007ff9ffc57000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ff9ffc60000 - 0x00007ff9ffc91000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ff9e9970000 - 0x00007ff9e997c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ff9a2fa0000 - 0x00007ff9a302d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ff9860a0000 - 0x00007ff986d0a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ff9ffad0000 - 0x00007ff9ffb82000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffa00260000 - 0x00007ffa00309000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ff9fedf0000 - 0x00007ff9fee18000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ff9ff8b0000 - 0x00007ff9ff9c4000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffa001e0000 - 0x00007ffa00251000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ff9fda40000 - 0x00007ff9fda8d000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ff9f7de0000 - 0x00007ff9f7e14000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ff9f7130000 - 0x00007ff9f713a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ff9fda20000 - 0x00007ff9fda33000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ff9fdcd0000 - 0x00007ff9fdce8000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ff9e89b0000 - 0x00007ff9e89ba000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ff9fd0c0000 - 0x00007ff9fd2f2000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffa01470000 - 0x00007ffa017fd000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffa00b10000 - 0x00007ffa00be7000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ff9f6890000 - 0x00007ff9f68c2000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ff9ff480000 - 0x00007ff9ff4fb000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ff9b9ac0000 - 0x00007ff9b9ae5000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: -Xmx1024m -Dsts.lsp.client=vscode -Dsts.log.file=/dev/null -XX:TieredStopAtLevel=1 -Xlog:jni+resolve=off -Dspring.config.location=file:c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes\application.properties
|
||||
java_command: org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\annotations-24.1.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\antlr4-runtime-4.13.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-analysis-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-tree-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-util-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\caffeine-3.1.8.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\checker-qual-3.12.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\classgraph-4.8.149.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-codec-1.16.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-compress-1.26.2.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-io-2.16.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-java-1.56.0-SNAPSHOT.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-lang3-3.14.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-language-server-1.56.0-SNAPS
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uint ConcGCThreads = 3 {product} {ergonomic}
|
||||
uint G1ConcRefinementThreads = 10 {product} {ergonomic}
|
||||
size_t G1HeapRegionSize = 1048576 {product} {ergonomic}
|
||||
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
|
||||
size_t InitialHeapSize = 266338304 {product} {ergonomic}
|
||||
size_t MarkStackSize = 4194304 {product} {ergonomic}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic}
|
||||
size_t MinHeapSize = 8388608 {product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 0 {pd product} {ergonomic}
|
||||
bool ProfileInterpreter = false {pd product} {command line}
|
||||
uintx ProfiledCodeHeapSize = 0 {pd product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
intx TieredStopAtLevel = 1 {product} {command line}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseG1GC = true {product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=warning,jni+resolve=off uptime,level,tags (reconfigured)
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 14 days 22:29 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (823M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 5M)
|
||||
current process WorkingSet (physical memory assigned to process): 11M, peak: 11M
|
||||
current process commit charge ("private bytes"): 317M, peak: 321M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
788
hs_err_pid19692.log
Normal file
788
hs_err_pid19692.log
Normal file
@ -0,0 +1,788 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (malloc) failed to allocate 32744 bytes. Error detail: ChunkPool::allocate
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (arena.cpp:79), pid=19692, tid=3676
|
||||
#
|
||||
# JRE version: OpenJDK Runtime Environment Temurin-17.0.12+7 (17.0.12+7) (build 17.0.12+7)
|
||||
# Java VM: OpenJDK 64-Bit Server VM Temurin-17.0.12+7 (17.0.12+7, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\ss_ws --pipe=\\.\pipe\lsp-e2bcc257c017c5d1876936bf75df772c-sock
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 11 13:58:51 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 24.939708 seconds (0d 0h 0m 24s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000001fd627f69c0): JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=3676, stack(0x00000021d1400000,0x00000021d1500000)]
|
||||
|
||||
|
||||
Current CompileTask:
|
||||
C2: 24939 5132 4 com.google.gson.stream.JsonReader::nextQuotedValue (294 bytes)
|
||||
|
||||
Stack: [0x00000021d1400000,0x00000021d1500000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0xacbd1]
|
||||
V [jvm.dll+0xad01c]
|
||||
V [jvm.dll+0x65bce3]
|
||||
V [jvm.dll+0x592f73]
|
||||
V [jvm.dll+0x57c7de]
|
||||
V [jvm.dll+0x57fe27]
|
||||
V [jvm.dll+0x57f57d]
|
||||
V [jvm.dll+0x57f5e9]
|
||||
V [jvm.dll+0x57f5e9]
|
||||
V [jvm.dll+0x57f5e9]
|
||||
V [jvm.dll+0x57f5e9]
|
||||
V [jvm.dll+0x57f5e9]
|
||||
V [jvm.dll+0x5871b4]
|
||||
V [jvm.dll+0x2231c2]
|
||||
V [jvm.dll+0x2235bf]
|
||||
V [jvm.dll+0x21c6e0]
|
||||
V [jvm.dll+0x219be1]
|
||||
V [jvm.dll+0x1a58bd]
|
||||
V [jvm.dll+0x229a2d]
|
||||
V [jvm.dll+0x227bdc]
|
||||
V [jvm.dll+0x7ec1f7]
|
||||
V [jvm.dll+0x7e65dc]
|
||||
V [jvm.dll+0x67e7f7]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x000001fd711223a0, length=43, elements={
|
||||
0x000001fd4960b770, 0x000001fd5d49a3e0, 0x000001fd5d49e470, 0x000001fd62819410,
|
||||
0x000001fd62819de0, 0x000001fd627f5430, 0x000001fd627f5a10, 0x000001fd627f69c0,
|
||||
0x000001fd62897bf0, 0x000001fd628b8870, 0x000001fd628ecc60, 0x000001fd62af9730,
|
||||
0x000001fd644c7090, 0x000001fd647d4a70, 0x000001fd647b2f00, 0x000001fd647cb630,
|
||||
0x000001fd648d2300, 0x000001fd648d2810, 0x000001fd648d1df0, 0x000001fd648d18e0,
|
||||
0x000001fd648d0ec0, 0x000001fd648cff90, 0x000001fd648d04a0, 0x000001fd648cf060,
|
||||
0x000001fd648cf570, 0x000001fd648cfa80, 0x000001fd648d13d0, 0x000001fd664944b0,
|
||||
0x000001fd6649a4e0, 0x000001fd66497240, 0x000001fd66497750, 0x000001fd664949c0,
|
||||
0x000001fd66496310, 0x000001fd6649a9f0, 0x000001fd664953e0, 0x000001fd664958f0,
|
||||
0x000001fd66497c60, 0x000001fd66494ed0, 0x000001fd664995b0, 0x000001fd66498170,
|
||||
0x000001fd6649af00, 0x000001fd66499fd0, 0x000001fd651c0200
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x000001fd4960b770 JavaThread "main" [_thread_blocked, id=20736, stack(0x00000021d0b00000,0x00000021d0c00000)]
|
||||
0x000001fd5d49a3e0 JavaThread "Reference Handler" daemon [_thread_blocked, id=8188, stack(0x00000021d0e00000,0x00000021d0f00000)]
|
||||
0x000001fd5d49e470 JavaThread "Finalizer" daemon [_thread_blocked, id=22464, stack(0x00000021d0f00000,0x00000021d1000000)]
|
||||
0x000001fd62819410 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14764, stack(0x00000021d1000000,0x00000021d1100000)]
|
||||
0x000001fd62819de0 JavaThread "Attach Listener" daemon [_thread_blocked, id=6724, stack(0x00000021d1100000,0x00000021d1200000)]
|
||||
0x000001fd627f5430 JavaThread "Service Thread" daemon [_thread_blocked, id=21424, stack(0x00000021d1200000,0x00000021d1300000)]
|
||||
0x000001fd627f5a10 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=5444, stack(0x00000021d1300000,0x00000021d1400000)]
|
||||
=>0x000001fd627f69c0 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=3676, stack(0x00000021d1400000,0x00000021d1500000)]
|
||||
0x000001fd62897bf0 JavaThread "C1 CompilerThread0" daemon [_thread_in_native, id=5544, stack(0x00000021d1500000,0x00000021d1600000)]
|
||||
0x000001fd628b8870 JavaThread "Sweeper thread" daemon [_thread_blocked, id=15668, stack(0x00000021d1600000,0x00000021d1700000)]
|
||||
0x000001fd628ecc60 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=15128, stack(0x00000021d1700000,0x00000021d1800000)]
|
||||
0x000001fd62af9730 JavaThread "Notification Thread" daemon [_thread_blocked, id=20916, stack(0x00000021d1800000,0x00000021d1900000)]
|
||||
0x000001fd644c7090 JavaThread "Active Thread: Equinox Container: d0401083-7abc-4a04-9a59-5bde2fd344fe" [_thread_blocked, id=10256, stack(0x00000021d2200000,0x00000021d2300000)]
|
||||
0x000001fd647d4a70 JavaThread "Framework Event Dispatcher: Equinox Container: d0401083-7abc-4a04-9a59-5bde2fd344fe" daemon [_thread_blocked, id=18540, stack(0x00000021d2300000,0x00000021d2400000)]
|
||||
0x000001fd647b2f00 JavaThread "Start Level: Equinox Container: d0401083-7abc-4a04-9a59-5bde2fd344fe" daemon [_thread_blocked, id=9716, stack(0x00000021d2400000,0x00000021d2500000)]
|
||||
0x000001fd647cb630 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=20128, stack(0x00000021d1b00000,0x00000021d1c00000)]
|
||||
0x000001fd648d2300 JavaThread "Worker-JM" [_thread_blocked, id=21996, stack(0x00000021d2600000,0x00000021d2700000)]
|
||||
0x000001fd648d2810 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=14028, stack(0x00000021d2900000,0x00000021d2a00000)]
|
||||
0x000001fd648d1df0 JavaThread "Worker-0" [_thread_blocked, id=15656, stack(0x00000021d2a00000,0x00000021d2b00000)]
|
||||
0x000001fd648d18e0 JavaThread "Worker-1" [_thread_blocked, id=11112, stack(0x00000021d2b00000,0x00000021d2c00000)]
|
||||
0x000001fd648d0ec0 JavaThread "Thread-2" daemon [_thread_in_native, id=10668, stack(0x00000021d3000000,0x00000021d3100000)]
|
||||
0x000001fd648cff90 JavaThread "Thread-3" daemon [_thread_in_native, id=13624, stack(0x00000021d3100000,0x00000021d3200000)]
|
||||
0x000001fd648d04a0 JavaThread "Thread-4" daemon [_thread_in_native, id=5672, stack(0x00000021d3200000,0x00000021d3300000)]
|
||||
0x000001fd648cf060 JavaThread "Thread-5" daemon [_thread_in_native, id=4256, stack(0x00000021d3300000,0x00000021d3400000)]
|
||||
0x000001fd648cf570 JavaThread "Thread-6" daemon [_thread_in_native, id=13400, stack(0x00000021d3400000,0x00000021d3500000)]
|
||||
0x000001fd648cfa80 JavaThread "Thread-7" daemon [_thread_in_native, id=20132, stack(0x00000021d3500000,0x00000021d3600000)]
|
||||
0x000001fd648d13d0 JavaThread "Thread-8" daemon [_thread_in_native, id=18516, stack(0x00000021d3600000,0x00000021d3700000)]
|
||||
0x000001fd664944b0 JavaThread "Thread-9" daemon [_thread_in_native, id=20524, stack(0x00000021d3700000,0x00000021d3800000)]
|
||||
0x000001fd6649a4e0 JavaThread "Thread-10" daemon [_thread_in_native, id=20288, stack(0x00000021d3800000,0x00000021d3900000)]
|
||||
0x000001fd66497240 JavaThread "Thread-11" daemon [_thread_in_native, id=19664, stack(0x00000021d3900000,0x00000021d3a00000)]
|
||||
0x000001fd66497750 JavaThread "Thread-12" daemon [_thread_in_native, id=20876, stack(0x00000021d3a00000,0x00000021d3b00000)]
|
||||
0x000001fd664949c0 JavaThread "Thread-13" daemon [_thread_in_native, id=12912, stack(0x00000021d3b00000,0x00000021d3c00000)]
|
||||
0x000001fd66496310 JavaThread "Thread-14" daemon [_thread_in_native, id=16768, stack(0x00000021d3c00000,0x00000021d3d00000)]
|
||||
0x000001fd6649a9f0 JavaThread "pool-2-thread-1" [_thread_blocked, id=3336, stack(0x00000021d3d00000,0x00000021d3e00000)]
|
||||
0x000001fd664953e0 JavaThread "WorkspaceEventsHandler" [_thread_blocked, id=20444, stack(0x00000021d3e00000,0x00000021d3f00000)]
|
||||
0x000001fd664958f0 JavaThread "pool-1-thread-1" [_thread_blocked, id=18696, stack(0x00000021d3f00000,0x00000021d4000000)]
|
||||
0x000001fd66497c60 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_blocked, id=7572, stack(0x00000021d4000000,0x00000021d4100000)]
|
||||
0x000001fd66494ed0 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_blocked, id=11080, stack(0x00000021d4100000,0x00000021d4200000)]
|
||||
0x000001fd664995b0 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_blocked, id=10172, stack(0x00000021d4200000,0x00000021d4300000)]
|
||||
0x000001fd66498170 JavaThread "ForkJoinPool.commonPool-worker-4" daemon [_thread_in_vm, id=9368, stack(0x00000021d4300000,0x00000021d4400000)]
|
||||
0x000001fd6649af00 JavaThread "ForkJoinPool.commonPool-worker-5" daemon [_thread_blocked, id=2704, stack(0x00000021d4400000,0x00000021d4500000)]
|
||||
0x000001fd66499fd0 JavaThread "Worker-2" [_thread_blocked, id=10060, stack(0x00000021d4500000,0x00000021d4600000)]
|
||||
0x000001fd651c0200 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=12216, stack(0x00000021d1a00000,0x00000021d1b00000)]
|
||||
|
||||
Other Threads:
|
||||
0x000001fd49693f80 VMThread "VM Thread" [stack: 0x00000021d0d00000,0x00000021d0e00000] [id=23504]
|
||||
0x000001fd62afa3b0 WatcherThread [stack: 0x00000021d1900000,0x00000021d1a00000] [id=22488]
|
||||
0x000001fd496205d0 GCTaskThread "GC Thread#0" [stack: 0x00000021d0c00000,0x00000021d0d00000] [id=16916]
|
||||
0x000001fd64477680 GCTaskThread "GC Thread#1" [stack: 0x00000021d1c00000,0x00000021d1d00000] [id=9484]
|
||||
0x000001fd64477940 GCTaskThread "GC Thread#2" [stack: 0x00000021d1d00000,0x00000021d1e00000] [id=6836]
|
||||
0x000001fd64477c00 GCTaskThread "GC Thread#3" [stack: 0x00000021d1e00000,0x00000021d1f00000] [id=19180]
|
||||
0x000001fd63ee2fb0 GCTaskThread "GC Thread#4" [stack: 0x00000021d1f00000,0x00000021d2000000] [id=15240]
|
||||
0x000001fd63ee3270 GCTaskThread "GC Thread#5" [stack: 0x00000021d2000000,0x00000021d2100000] [id=9412]
|
||||
0x000001fd63ee3530 GCTaskThread "GC Thread#6" [stack: 0x00000021d2100000,0x00000021d2200000] [id=2176]
|
||||
0x000001fd647b2640 GCTaskThread "GC Thread#7" [stack: 0x00000021d2500000,0x00000021d2600000] [id=22204]
|
||||
0x000001fd6493d240 GCTaskThread "GC Thread#8" [stack: 0x00000021d2700000,0x00000021d2800000] [id=15792]
|
||||
0x000001fd6493c9a0 GCTaskThread "GC Thread#9" [stack: 0x00000021d2800000,0x00000021d2900000] [id=19128]
|
||||
|
||||
Threads with active compile tasks:
|
||||
C2 CompilerThread0 24977 5132 4 com.google.gson.stream.JsonReader::nextQuotedValue (294 bytes)
|
||||
C1 CompilerThread0 24977 5170 3 java.net.URI::decode (380 bytes)
|
||||
C2 CompilerThread1 24977 5147 4 org.eclipse.jdt.internal.compiler.parser.Parser::consumeRule (7920 bytes)
|
||||
|
||||
VM state: not at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: None
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) not mapped
|
||||
Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000
|
||||
|
||||
GC Precious Log:
|
||||
CPUs: 12 total, 12 available
|
||||
Memory: 16251M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (32-bit)
|
||||
Alignments: Space 512K, Generation 512K, Heap 2M
|
||||
Heap Min Capacity: 100M
|
||||
Heap Initial Capacity: 100M
|
||||
Heap Max Capacity: 1G
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 10
|
||||
|
||||
Heap:
|
||||
PSYoungGen total 24576K, used 19457K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 22016K, 78% used [0x00000000eab00000,0x00000000ebbd46f8,0x00000000ec080000)
|
||||
from space 2560K, 86% used [0x00000000ec300000,0x00000000ec52c030,0x00000000ec580000)
|
||||
to space 2560K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 29721K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 43% used [0x00000000c0000000,0x00000000c1d064e0,0x00000000c4300000)
|
||||
Metaspace used 48560K, committed 49408K, reserved 1114112K
|
||||
class space used 4891K, committed 5312K, reserved 1048576K
|
||||
|
||||
Card table byte_map: [0x000001fd48fc0000,0x000001fd491d0000] _byte_map_base: 0x000001fd489c0000
|
||||
|
||||
Marking Bits: (ParMarkBitMap*) 0x00007ffa94a958b0
|
||||
Begin Bits: [0x000001fd5b2a0000, 0x000001fd5c2a0000)
|
||||
End Bits: [0x000001fd5c2a0000, 0x000001fd5d2a0000)
|
||||
|
||||
Polling page: 0x000001fd47590000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 42.65 MB used.
|
||||
Class: 4.78 MB used.
|
||||
Both: 47.42 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 43.06 MB ( 67%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 5.19 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 48.25 MB ( 4%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 4.02 MB
|
||||
Class: 10.66 MB
|
||||
Both: 14.67 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 58.38 MB
|
||||
CDS: off
|
||||
MetaspaceReclaimPolicy: balanced
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- new_chunks_are_fully_committed: 0.
|
||||
- uncommit_free_chunks: 1.
|
||||
- use_allocation_guard: 0.
|
||||
- handle_deallocations: 1.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 6.
|
||||
num_arena_births: 462.
|
||||
num_arena_deaths: 14.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 772.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 20.
|
||||
num_chunks_taken_from_freelist: 2142.
|
||||
num_chunk_merges: 8.
|
||||
num_chunk_splits: 1368.
|
||||
num_chunks_enlarged: 912.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=120000Kb used=3116Kb max_used=3116Kb free=116883Kb
|
||||
bounds [0x000001fd53d70000, 0x000001fd54080000, 0x000001fd5b2a0000]
|
||||
CodeHeap 'profiled nmethods': size=120000Kb used=11152Kb max_used=11152Kb free=108847Kb
|
||||
bounds [0x000001fd4c2a0000, 0x000001fd4cd90000, 0x000001fd537d0000]
|
||||
CodeHeap 'non-nmethods': size=5760Kb used=1351Kb max_used=1508Kb free=4408Kb
|
||||
bounds [0x000001fd537d0000, 0x000001fd53a40000, 0x000001fd53d70000]
|
||||
total_blobs=5847 nmethods=5157 adapters=603
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 24.921 Thread 0x000001fd651c0200 5147 4 org.eclipse.jdt.internal.compiler.parser.Parser::consumeRule (7920 bytes)
|
||||
Event: 24.922 Thread 0x000001fd62897bf0 nmethod 5154 0x000001fd4cd73210 code [0x000001fd4cd73640, 0x000001fd4cd75978]
|
||||
Event: 24.922 Thread 0x000001fd62897bf0 5159 1 org.eclipse.jdt.internal.core.AnnotatableInfo::setNameSourceStart (6 bytes)
|
||||
Event: 24.922 Thread 0x000001fd62897bf0 nmethod 5159 0x000001fd5407a090 code [0x000001fd5407a220, 0x000001fd5407a2f8]
|
||||
Event: 24.922 Thread 0x000001fd62897bf0 5160 1 org.eclipse.jdt.internal.core.AnnotatableInfo::setNameSourceEnd (6 bytes)
|
||||
Event: 24.922 Thread 0x000001fd62897bf0 nmethod 5160 0x000001fd5407a390 code [0x000001fd5407a520, 0x000001fd5407a5f8]
|
||||
Event: 24.922 Thread 0x000001fd62897bf0 5155 3 lombok.core.TypeResolver::typeRefToFullyQualifiedName (487 bytes)
|
||||
Event: 24.926 Thread 0x000001fd62897bf0 nmethod 5155 0x000001fd4cd76690 code [0x000001fd4cd76cc0, 0x000001fd4cd7a7a8]
|
||||
Event: 24.926 Thread 0x000001fd62897bf0 5156 3 lombok.core.TypeLibrary::toQualifieds (81 bytes)
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 nmethod 5156 0x000001fd4cd7b910 code [0x000001fd4cd7bbc0, 0x000001fd4cd7cb58]
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 5157 3 lombok.core.LombokNode::getImportList (8 bytes)
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 nmethod 5157 0x000001fd4cd7cf90 code [0x000001fd4cd7d120, 0x000001fd4cd7d2b8]
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 5158 3 lombok.core.TypeResolver::<init> (10 bytes)
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 nmethod 5158 0x000001fd4cd7d410 code [0x000001fd4cd7d5a0, 0x000001fd4cd7d718]
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 5161 1 org.eclipse.jdt.internal.core.Annotation::getElementName (5 bytes)
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 nmethod 5161 0x000001fd5407a690 code [0x000001fd5407a820, 0x000001fd5407a8f8]
|
||||
Event: 24.927 Thread 0x000001fd62897bf0 5162 1 org.eclipse.jdt.internal.core.MemberElementInfo::setFlags (6 bytes)
|
||||
Event: 24.928 Thread 0x000001fd62897bf0 nmethod 5162 0x000001fd5407a990 code [0x000001fd5407ab20, 0x000001fd5407abf8]
|
||||
Event: 24.928 Thread 0x000001fd62897bf0 5164 1 org.eclipse.jdt.internal.compiler.ast.ASTNode::sourceStart (5 bytes)
|
||||
Event: 24.928 Thread 0x000001fd62897bf0 nmethod 5164 0x000001fd5407ac90 code [0x000001fd5407ae20, 0x000001fd5407aef8]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 4.164 GC heap before
|
||||
{Heap before GC invocations=15 (full 2):
|
||||
PSYoungGen total 23040K, used 23040K [0x00000000eab00000, 0x00000000ec880000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 1024K, 100% used [0x00000000ec580000,0x00000000ec680000,0x00000000ec680000)
|
||||
to space 4096K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec480000)
|
||||
ParOldGen total 68608K, used 17214K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 25% used [0x00000000c0000000,0x00000000c10cf850,0x00000000c4300000)
|
||||
Metaspace used 38423K, committed 39232K, reserved 1114112K
|
||||
class space used 3877K, committed 4224K, reserved 1048576K
|
||||
}
|
||||
Event: 4.167 GC heap after
|
||||
{Heap after GC invocations=15 (full 2):
|
||||
PSYoungGen total 24064K, used 2016K [0x00000000eab00000, 0x00000000ec680000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 2048K, 98% used [0x00000000ec080000,0x00000000ec278010,0x00000000ec280000)
|
||||
to space 3072K, 0% used [0x00000000ec380000,0x00000000ec380000,0x00000000ec680000)
|
||||
ParOldGen total 68608K, used 18278K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 26% used [0x00000000c0000000,0x00000000c11d9850,0x00000000c4300000)
|
||||
Metaspace used 38423K, committed 39232K, reserved 1114112K
|
||||
class space used 3877K, committed 4224K, reserved 1048576K
|
||||
}
|
||||
Event: 4.432 GC heap before
|
||||
{Heap before GC invocations=16 (full 2):
|
||||
PSYoungGen total 24064K, used 24032K [0x00000000eab00000, 0x00000000ec680000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 2048K, 98% used [0x00000000ec080000,0x00000000ec278010,0x00000000ec280000)
|
||||
to space 3072K, 0% used [0x00000000ec380000,0x00000000ec380000,0x00000000ec680000)
|
||||
ParOldGen total 68608K, used 18278K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 26% used [0x00000000c0000000,0x00000000c11d9850,0x00000000c4300000)
|
||||
Metaspace used 40026K, committed 40768K, reserved 1114112K
|
||||
class space used 4092K, committed 4416K, reserved 1048576K
|
||||
}
|
||||
Event: 4.436 GC heap after
|
||||
{Heap after GC invocations=16 (full 2):
|
||||
PSYoungGen total 23552K, used 1481K [0x00000000eab00000, 0x00000000ec500000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 1536K, 96% used [0x00000000ec380000,0x00000000ec4f2478,0x00000000ec500000)
|
||||
to space 2048K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 20094K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 29% used [0x00000000c0000000,0x00000000c139f860,0x00000000c4300000)
|
||||
Metaspace used 40026K, committed 40768K, reserved 1114112K
|
||||
class space used 4092K, committed 4416K, reserved 1048576K
|
||||
}
|
||||
Event: 5.353 GC heap before
|
||||
{Heap before GC invocations=17 (full 2):
|
||||
PSYoungGen total 23552K, used 23497K [0x00000000eab00000, 0x00000000ec500000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 1536K, 96% used [0x00000000ec380000,0x00000000ec4f2478,0x00000000ec500000)
|
||||
to space 2048K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 20094K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 29% used [0x00000000c0000000,0x00000000c139f860,0x00000000c4300000)
|
||||
Metaspace used 41489K, committed 42240K, reserved 1114112K
|
||||
class space used 4240K, committed 4608K, reserved 1048576K
|
||||
}
|
||||
Event: 5.356 GC heap after
|
||||
{Heap after GC invocations=17 (full 2):
|
||||
PSYoungGen total 24064K, used 480K [0x00000000eab00000, 0x00000000ec400000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 2048K, 23% used [0x00000000ec100000,0x00000000ec178010,0x00000000ec300000)
|
||||
to space 1024K, 0% used [0x00000000ec300000,0x00000000ec300000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 21347K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 31% used [0x00000000c0000000,0x00000000c14d8c08,0x00000000c4300000)
|
||||
Metaspace used 41489K, committed 42240K, reserved 1114112K
|
||||
class space used 4240K, committed 4608K, reserved 1048576K
|
||||
}
|
||||
Event: 5.807 GC heap before
|
||||
{Heap before GC invocations=18 (full 2):
|
||||
PSYoungGen total 24064K, used 22494K [0x00000000eab00000, 0x00000000ec400000, 0x0000000100000000)
|
||||
eden space 22016K, 99% used [0x00000000eab00000,0x00000000ec07f948,0x00000000ec080000)
|
||||
from space 2048K, 23% used [0x00000000ec100000,0x00000000ec178010,0x00000000ec300000)
|
||||
to space 1024K, 0% used [0x00000000ec300000,0x00000000ec300000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 21347K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 31% used [0x00000000c0000000,0x00000000c14d8c08,0x00000000c4300000)
|
||||
Metaspace used 42681K, committed 43456K, reserved 1114112K
|
||||
class space used 4337K, committed 4672K, reserved 1048576K
|
||||
}
|
||||
Event: 5.808 GC heap after
|
||||
{Heap after GC invocations=18 (full 2):
|
||||
PSYoungGen total 23040K, used 1012K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 1024K, 98% used [0x00000000ec300000,0x00000000ec3fd140,0x00000000ec400000)
|
||||
to space 2560K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 22257K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 32% used [0x00000000c0000000,0x00000000c15bc740,0x00000000c4300000)
|
||||
Metaspace used 42681K, committed 43456K, reserved 1114112K
|
||||
class space used 4337K, committed 4672K, reserved 1048576K
|
||||
}
|
||||
Event: 5.879 GC heap before
|
||||
{Heap before GC invocations=19 (full 2):
|
||||
PSYoungGen total 23040K, used 23028K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 1024K, 98% used [0x00000000ec300000,0x00000000ec3fd140,0x00000000ec400000)
|
||||
to space 2560K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 22257K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 32% used [0x00000000c0000000,0x00000000c15bc740,0x00000000c4300000)
|
||||
Metaspace used 42706K, committed 43520K, reserved 1114112K
|
||||
class space used 4337K, committed 4672K, reserved 1048576K
|
||||
}
|
||||
Event: 5.881 GC heap after
|
||||
{Heap after GC invocations=19 (full 2):
|
||||
PSYoungGen total 23552K, used 1251K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 1536K, 81% used [0x00000000ec080000,0x00000000ec1b8de8,0x00000000ec200000)
|
||||
to space 1536K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec380000)
|
||||
ParOldGen total 68608K, used 22953K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 33% used [0x00000000c0000000,0x00000000c166a660,0x00000000c4300000)
|
||||
Metaspace used 42706K, committed 43520K, reserved 1114112K
|
||||
class space used 4337K, committed 4672K, reserved 1048576K
|
||||
}
|
||||
Event: 6.920 GC heap before
|
||||
{Heap before GC invocations=20 (full 2):
|
||||
PSYoungGen total 23552K, used 23267K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 1536K, 81% used [0x00000000ec080000,0x00000000ec1b8de8,0x00000000ec200000)
|
||||
to space 1536K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec380000)
|
||||
ParOldGen total 68608K, used 22953K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 33% used [0x00000000c0000000,0x00000000c166a660,0x00000000c4300000)
|
||||
Metaspace used 45518K, committed 46400K, reserved 1114112K
|
||||
class space used 4585K, committed 4992K, reserved 1048576K
|
||||
}
|
||||
Event: 6.927 GC heap after
|
||||
{Heap after GC invocations=20 (full 2):
|
||||
PSYoungGen total 23552K, used 992K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 1536K, 64% used [0x00000000ec200000,0x00000000ec2f8040,0x00000000ec380000)
|
||||
to space 1536K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 22969K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 33% used [0x00000000c0000000,0x00000000c166e660,0x00000000c4300000)
|
||||
Metaspace used 45518K, committed 46400K, reserved 1114112K
|
||||
class space used 4585K, committed 4992K, reserved 1048576K
|
||||
}
|
||||
Event: 7.018 GC heap before
|
||||
{Heap before GC invocations=21 (full 2):
|
||||
PSYoungGen total 23552K, used 23008K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 1536K, 64% used [0x00000000ec200000,0x00000000ec2f8040,0x00000000ec380000)
|
||||
to space 1536K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 22969K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 33% used [0x00000000c0000000,0x00000000c166e660,0x00000000c4300000)
|
||||
Metaspace used 45521K, committed 46400K, reserved 1114112K
|
||||
class space used 4585K, committed 4992K, reserved 1048576K
|
||||
}
|
||||
Event: 7.022 GC heap after
|
||||
{Heap after GC invocations=21 (full 2):
|
||||
PSYoungGen total 23552K, used 1536K [0x00000000eab00000, 0x00000000ec780000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 1536K, 100% used [0x00000000ec080000,0x00000000ec200000,0x00000000ec200000)
|
||||
to space 3584K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec780000)
|
||||
ParOldGen total 68608K, used 24462K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 35% used [0x00000000c0000000,0x00000000c17e3bd0,0x00000000c4300000)
|
||||
Metaspace used 45521K, committed 46400K, reserved 1114112K
|
||||
class space used 4585K, committed 4992K, reserved 1048576K
|
||||
}
|
||||
Event: 7.101 GC heap before
|
||||
{Heap before GC invocations=22 (full 2):
|
||||
PSYoungGen total 23552K, used 23552K [0x00000000eab00000, 0x00000000ec780000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 1536K, 100% used [0x00000000ec080000,0x00000000ec200000,0x00000000ec200000)
|
||||
to space 3584K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec780000)
|
||||
ParOldGen total 68608K, used 24462K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 35% used [0x00000000c0000000,0x00000000c17e3bd0,0x00000000c4300000)
|
||||
Metaspace used 45521K, committed 46400K, reserved 1114112K
|
||||
class space used 4585K, committed 4992K, reserved 1048576K
|
||||
}
|
||||
Event: 7.107 GC heap after
|
||||
{Heap after GC invocations=22 (full 2):
|
||||
PSYoungGen total 25088K, used 2688K [0x00000000eab00000, 0x00000000ec700000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 3072K, 87% used [0x00000000ec400000,0x00000000ec6a0010,0x00000000ec700000)
|
||||
to space 3072K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 25958K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 37% used [0x00000000c0000000,0x00000000c1959bd0,0x00000000c4300000)
|
||||
Metaspace used 45521K, committed 46400K, reserved 1114112K
|
||||
class space used 4585K, committed 4992K, reserved 1048576K
|
||||
}
|
||||
Event: 7.218 GC heap before
|
||||
{Heap before GC invocations=23 (full 2):
|
||||
PSYoungGen total 25088K, used 24704K [0x00000000eab00000, 0x00000000ec700000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 3072K, 87% used [0x00000000ec400000,0x00000000ec6a0010,0x00000000ec700000)
|
||||
to space 3072K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 25958K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 37% used [0x00000000c0000000,0x00000000c1959bd0,0x00000000c4300000)
|
||||
Metaspace used 45586K, committed 46464K, reserved 1114112K
|
||||
class space used 4593K, committed 5056K, reserved 1048576K
|
||||
}
|
||||
Event: 7.227 GC heap after
|
||||
{Heap after GC invocations=23 (full 2):
|
||||
PSYoungGen total 24064K, used 1760K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 2048K, 85% used [0x00000000ec100000,0x00000000ec2b8000,0x00000000ec300000)
|
||||
to space 2560K, 0% used [0x00000000ec300000,0x00000000ec300000,0x00000000ec580000)
|
||||
ParOldGen total 68608K, used 28118K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 40% used [0x00000000c0000000,0x00000000c1b75be0,0x00000000c4300000)
|
||||
Metaspace used 45586K, committed 46464K, reserved 1114112K
|
||||
class space used 4593K, committed 5056K, reserved 1048576K
|
||||
}
|
||||
Event: 7.557 GC heap before
|
||||
{Heap before GC invocations=24 (full 2):
|
||||
PSYoungGen total 24064K, used 23776K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 2048K, 85% used [0x00000000ec100000,0x00000000ec2b8000,0x00000000ec300000)
|
||||
to space 2560K, 0% used [0x00000000ec300000,0x00000000ec300000,0x00000000ec580000)
|
||||
ParOldGen total 68608K, used 28118K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 40% used [0x00000000c0000000,0x00000000c1b75be0,0x00000000c4300000)
|
||||
Metaspace used 46491K, committed 47360K, reserved 1114112K
|
||||
class space used 4698K, committed 5120K, reserved 1048576K
|
||||
}
|
||||
Event: 7.561 GC heap after
|
||||
{Heap after GC invocations=24 (full 2):
|
||||
PSYoungGen total 24576K, used 2224K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 2560K, 86% used [0x00000000ec300000,0x00000000ec52c030,0x00000000ec580000)
|
||||
to space 2560K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 29721K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 43% used [0x00000000c0000000,0x00000000c1d064e0,0x00000000c4300000)
|
||||
Metaspace used 46491K, committed 47360K, reserved 1114112K
|
||||
class space used 4698K, committed 5120K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (10 events):
|
||||
Event: 0.024 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
Event: 0.193 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.200 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
Event: 0.207 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
Event: 0.210 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
Event: 0.215 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.226 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
Event: 0.288 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
Event: 1.305 Loaded shared library C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
Event: 2.415 Loaded shared library C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna14697987224277071266.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 8.041 Thread 0x000001fd648d18e0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001fd540055bc relative=0x00000000000000bc
|
||||
Event: 8.041 Thread 0x000001fd648d18e0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001fd540055bc method=java.util.Hashtable$Enumerator.nextElement()Ljava/lang/Object; @ 87 c2
|
||||
Event: 8.041 Thread 0x000001fd648d18e0 DEOPT PACKING pc=0x000001fd540055bc sp=0x00000021d2bfee40
|
||||
Event: 8.041 Thread 0x000001fd648d18e0 DEOPT UNPACKING pc=0x000001fd538266a3 sp=0x00000021d2bfed68 mode 2
|
||||
Event: 8.100 Thread 0x000001fd648d18e0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001fd53fd960c relative=0x000000000000008c
|
||||
Event: 8.100 Thread 0x000001fd648d18e0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001fd53fd960c method=java.util.Hashtable$Enumerator.nextElement()Ljava/lang/Object; @ 87 c2
|
||||
Event: 8.100 Thread 0x000001fd648d18e0 DEOPT PACKING pc=0x000001fd53fd960c sp=0x00000021d2bfee00
|
||||
Event: 8.100 Thread 0x000001fd648d18e0 DEOPT UNPACKING pc=0x000001fd538266a3 sp=0x00000021d2bfed80 mode 2
|
||||
Event: 8.153 Thread 0x000001fd66498170 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001fd53e182ac relative=0x000000000000018c
|
||||
Event: 8.153 Thread 0x000001fd66498170 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001fd53e182ac method=java.util.concurrent.ConcurrentHashMap.get(Ljava/lang/Object;)Ljava/lang/Object; @ 76 c2
|
||||
Event: 8.153 Thread 0x000001fd66498170 DEOPT PACKING pc=0x000001fd53e182ac sp=0x00000021d43fe910
|
||||
Event: 8.153 Thread 0x000001fd66498170 DEOPT UNPACKING pc=0x000001fd538266a3 sp=0x00000021d43fe888 mode 2
|
||||
Event: 8.153 Thread 0x000001fd66498170 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001fd53f54538 relative=0x0000000000001078
|
||||
Event: 8.153 Thread 0x000001fd66498170 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001fd53f54538 method=java.util.concurrent.ConcurrentHashMap.putVal(Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object; @ 245 c2
|
||||
Event: 8.153 Thread 0x000001fd66498170 DEOPT PACKING pc=0x000001fd53f54538 sp=0x00000021d43fe860
|
||||
Event: 8.153 Thread 0x000001fd66498170 DEOPT UNPACKING pc=0x000001fd538266a3 sp=0x00000021d43fe7d8 mode 2
|
||||
Event: 8.161 Thread 0x000001fd66498170 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001fd53e850a0 relative=0x0000000000000b60
|
||||
Event: 8.161 Thread 0x000001fd66498170 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001fd53e850a0 method=java.util.concurrent.ConcurrentHashMap.transfer([Ljava/util/concurrent/ConcurrentHashMap$Node;[Ljava/util/concurrent/ConcurrentHashMap$Node;)V @ 352 c2
|
||||
Event: 8.161 Thread 0x000001fd66498170 DEOPT PACKING pc=0x000001fd53e850a0 sp=0x00000021d43fdab0
|
||||
Event: 8.161 Thread 0x000001fd66498170 DEOPT UNPACKING pc=0x000001fd538266a3 sp=0x00000021d43fda18 mode 2
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 6.876 Loading class jdk/internal/reflect/UnsafeQualifiedStaticIntegerFieldAccessorImpl
|
||||
Event: 6.877 Loading class jdk/internal/reflect/UnsafeQualifiedStaticIntegerFieldAccessorImpl done
|
||||
Event: 7.191 Loading class java/util/stream/MatchOps$MatchKind
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps$MatchKind done
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps done
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps$MatchOp
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps$MatchOp done
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps$BooleanTerminalSink
|
||||
Event: 7.192 Loading class java/util/stream/MatchOps$BooleanTerminalSink done
|
||||
Event: 7.193 Loading class java/util/stream/MatchOps$1MatchSink
|
||||
Event: 7.193 Loading class java/util/stream/MatchOps$1MatchSink done
|
||||
Event: 7.483 Loading class java/util/stream/ReduceOps$4
|
||||
Event: 7.483 Loading class java/util/stream/ReduceOps$4 done
|
||||
Event: 7.483 Loading class java/util/stream/ReduceOps$4ReducingSink
|
||||
Event: 7.484 Loading class java/util/stream/ReduceOps$4ReducingSink done
|
||||
Event: 8.155 Loading class java/util/concurrent/ConcurrentHashMap$TreeNode
|
||||
Event: 8.155 Loading class java/util/concurrent/ConcurrentHashMap$TreeNode done
|
||||
Event: 8.155 Loading class java/util/concurrent/ConcurrentHashMap$TreeBin
|
||||
Event: 8.155 Loading class java/util/concurrent/ConcurrentHashMap$TreeBin done
|
||||
|
||||
Classes unloaded (7 events):
|
||||
Event: 2.248 Thread 0x000001fd49693f80 Unloading class 0x000000010021a400 'java/lang/invoke/LambdaForm$MH+0x000000010021a400'
|
||||
Event: 2.248 Thread 0x000001fd49693f80 Unloading class 0x000000010021a000 'java/lang/invoke/LambdaForm$MH+0x000000010021a000'
|
||||
Event: 2.249 Thread 0x000001fd49693f80 Unloading class 0x0000000100219c00 'java/lang/invoke/LambdaForm$MH+0x0000000100219c00'
|
||||
Event: 2.249 Thread 0x000001fd49693f80 Unloading class 0x0000000100219800 'java/lang/invoke/LambdaForm$MH+0x0000000100219800'
|
||||
Event: 2.249 Thread 0x000001fd49693f80 Unloading class 0x0000000100219400 'java/lang/invoke/LambdaForm$BMH+0x0000000100219400'
|
||||
Event: 2.249 Thread 0x000001fd49693f80 Unloading class 0x0000000100219000 'java/lang/invoke/LambdaForm$DMH+0x0000000100219000'
|
||||
Event: 2.249 Thread 0x000001fd49693f80 Unloading class 0x0000000100214400 'java/lang/invoke/LambdaForm$DMH+0x0000000100214400'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 5.453 Thread 0x000001fd66494ed0 Implicit null exception at 0x000001fd53ee07f3 to 0x000001fd53ee1554
|
||||
Event: 5.735 Thread 0x000001fd664958f0 Exception <a 'java/lang/LinkageError'{0x00000000eb4b7390}: loader lombok.launch.ShadowClassLoader @b1f0330 attempted duplicate class definition for lombok.launch.PatchFixesHider$ValPortal. (lombok.launch.PatchFixesHider$ValPortal is in unnamed module of loader lombok.launch.ShadowClassLoader @b1f0330, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @19935a46)> (0x00000000eb4b7390)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 5.735 Thread 0x000001fd66497c60 Exception <a 'java/lang/LinkageError'{0x00000000eb4d3288}: loader lombok.launch.ShadowClassLoader @b1f0330 attempted duplicate class definition for lombok.launch.PatchFixesHider$ValPortal. (lombok.launch.PatchFixesHider$ValPortal is in unnamed module of loader lombok.launch.ShadowClassLoader @b1f0330, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @19935a46)> (0x00000000eb4d3288)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 5.975 Thread 0x000001fd664958f0 Exception <a 'java/lang/LinkageError'{0x00000000eb33f098}: loader lombok.launch.ShadowClassLoader @48462226 attempted duplicate class definition for lombok.launch.PatchFixesHider$FieldInitializer. (lombok.launch.PatchFixesHider$FieldInitializer is in unnamed module of loader lombok.launch.ShadowClassLoader @48462226, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @6c23d1fa)> (0x00000000eb33f098)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 5.976 Thread 0x000001fd66497c60 Exception <a 'java/lang/LinkageError'{0x00000000eb329990}: loader lombok.launch.ShadowClassLoader @48462226 attempted duplicate class definition for lombok.launch.PatchFixesHider$FieldInitializer. (lombok.launch.PatchFixesHider$FieldInitializer is in unnamed module of loader lombok.launch.ShadowClassLoader @48462226, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @6c23d1fa)> (0x00000000eb329990)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 6.300 Thread 0x000001fd664995b0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebacc780}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x00000000ebacc780)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 6.788 Thread 0x000001fd664995b0 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'{0x00000000ebd95168}: Index 1750 out of bounds for length 1749> (0x00000000ebd95168)
|
||||
thrown [s\src\hotspot\share\interpreter\interpreterRuntime.cpp, line 428]
|
||||
Event: 7.191 Thread 0x000001fd66498170 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebb64e00}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object)'> (0x00000000ebb64e00)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.191 Thread 0x000001fd66498170 Exception <a 'java/lang/IncompatibleClassChangeError'{0x00000000ebb68390}: Found class java.lang.Object, but interface was expected> (0x00000000ebb68390)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 826]
|
||||
Event: 7.407 Thread 0x000001fd66498170 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebcd14c0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, java.lang.Object, java.lang.Object, int)'> (0x00000000ebcd14c0)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.483 Thread 0x000001fd66498170 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebdfc6b8}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000ebdfc6b8)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.486 Thread 0x000001fd648d18e0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebe7e438}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000ebe7e438)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.490 Thread 0x000001fd66498170 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebe94a68}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeSpecialIFC(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000ebe94a68)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.671 Thread 0x000001fd648d18e0 Exception <a 'java/io/FileNotFoundException'{0x00000000eacb2060}> (0x00000000eacb2060)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 7.678 Thread 0x000001fd66498170 Exception <a 'java/io/FileNotFoundException'{0x00000000eacbce00}> (0x00000000eacbce00)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 7.960 Thread 0x000001fd66498170 Exception <a 'java/lang/LinkageError'{0x00000000eb190810}: loader lombok.launch.ShadowClassLoader @b1f0330 attempted duplicate class definition for lombok.launch.PatchFixesHider$ExtensionMethod. (lombok.launch.PatchFixesHider$ExtensionMethod is in unnamed module of loader lombok.launch.ShadowClassLoader @b1f0330, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @19935a46)> (0x00000000eb190810)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 8.011 Thread 0x000001fd66498170 Exception <a 'java/lang/LinkageError'{0x00000000eb2e4d88}: loader lombok.launch.ShadowClassLoader @b1f0330 attempted duplicate class definition for lombok.launch.PatchFixesHider$Val. (lombok.launch.PatchFixesHider$Val is in unnamed module of loader lombok.launch.ShadowClassLoader @b1f0330, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @19935a46)> (0x00000000eb2e4d88)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 8.054 Thread 0x000001fd648d18e0 Exception <a 'java/io/FileNotFoundException'{0x00000000eb5dfa50}> (0x00000000eb5dfa50)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 8.055 Thread 0x000001fd648d18e0 Exception <a 'java/io/FileNotFoundException'{0x00000000eb5e13c0}> (0x00000000eb5e13c0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 8.055 Thread 0x000001fd648d18e0 Exception <a 'java/io/FileNotFoundException'{0x00000000eb5e25b8}> (0x00000000eb5e25b8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 6.853 Executing VM operation: HandshakeAllThreads
|
||||
Event: 6.853 Executing VM operation: HandshakeAllThreads done
|
||||
Event: 6.919 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 6.927 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.018 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.022 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.101 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.107 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.218 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.227 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.500 Executing VM operation: HandshakeAllThreads
|
||||
Event: 7.500 Executing VM operation: HandshakeAllThreads done
|
||||
Event: 7.557 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.561 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.938 Executing VM operation: HandshakeAllThreads
|
||||
Event: 7.938 Executing VM operation: HandshakeAllThreads done
|
||||
Event: 8.164 Executing VM operation: ICBufferFull
|
||||
Event: 8.164 Executing VM operation: ICBufferFull done
|
||||
Event: 9.171 Executing VM operation: Cleanup
|
||||
Event: 9.171 Executing VM operation: Cleanup done
|
||||
|
||||
Events (20 events):
|
||||
Event: 3.424 Thread 0x000001fd66496310 Thread added: 0x000001fd66496310
|
||||
Event: 3.435 Thread 0x000001fd6649a9f0 Thread added: 0x000001fd6649a9f0
|
||||
Event: 3.552 Thread 0x000001fd664953e0 Thread added: 0x000001fd664953e0
|
||||
Event: 3.552 Thread 0x000001fd664958f0 Thread added: 0x000001fd664958f0
|
||||
Event: 3.732 Thread 0x000001fd66497c60 Thread added: 0x000001fd66497c60
|
||||
Event: 3.733 Thread 0x000001fd66494ed0 Thread added: 0x000001fd66494ed0
|
||||
Event: 4.662 Thread 0x000001fd65dd2680 Thread exited: 0x000001fd65dd2680
|
||||
Event: 4.789 Thread 0x000001fd64a31160 Thread exited: 0x000001fd64a31160
|
||||
Event: 5.788 Thread 0x000001fd6506e910 Thread added: 0x000001fd6506e910
|
||||
Event: 5.817 Thread 0x000001fd63e37ee0 Thread added: 0x000001fd63e37ee0
|
||||
Event: 6.288 Thread 0x000001fd664995b0 Thread added: 0x000001fd664995b0
|
||||
Event: 6.297 Thread 0x000001fd66498170 Thread added: 0x000001fd66498170
|
||||
Event: 6.317 Thread 0x000001fd6649af00 Thread added: 0x000001fd6649af00
|
||||
Event: 7.363 Thread 0x000001fd66499fd0 Thread added: 0x000001fd66499fd0
|
||||
Event: 7.555 Thread 0x000001fd62a61910 Thread exited: 0x000001fd62a61910
|
||||
Event: 7.799 Thread 0x000001fd63e37ee0 Thread exited: 0x000001fd63e37ee0
|
||||
Event: 8.072 Thread 0x000001fd651c21e0 Thread added: 0x000001fd651c21e0
|
||||
Event: 13.818 Thread 0x000001fd651c21e0 Thread exited: 0x000001fd651c21e0
|
||||
Event: 18.478 Thread 0x000001fd6506e910 Thread exited: 0x000001fd6506e910
|
||||
Event: 24.920 Thread 0x000001fd651c0200 Thread added: 0x000001fd651c0200
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff66a7a0000 - 0x00007ff66a7ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffae5cf0000 - 0x00007ffae5f07000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ffae3ef0000 - 0x00007ffae3fb4000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ffae3010000 - 0x00007ffae33bd000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ffae33c0000 - 0x00007ffae34d1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ffadbaa0000 - 0x00007ffadbab7000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ffae3bf0000 - 0x00007ffae3d9e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ffae34e0000 - 0x00007ffae3506000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ffae4db0000 - 0x00007ffae4dd9000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ffae3510000 - 0x00007ffae3629000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ffae3750000 - 0x00007ffae37ea000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ffacb330000 - 0x00007ffacb5c3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ffae3b40000 - 0x00007ffae3be7000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ffadba80000 - 0x00007ffadba9b000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffae3a30000 - 0x00007ffae3a61000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ffadfc30000 - 0x00007ffadfc3c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ffaacf90000 - 0x00007ffaad01d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ffa93ef0000 - 0x00007ffa94b5a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ffae5a30000 - 0x00007ffae5ae2000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffae5020000 - 0x00007ffae50c9000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ffae36a0000 - 0x00007ffae36c8000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ffae5b70000 - 0x00007ffae5c84000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffae5af0000 - 0x00007ffae5b61000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ffada000000 - 0x00007ffada00a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ffae1ea0000 - 0x00007ffae1eed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffadba00000 - 0x00007ffadba34000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ffae1e80000 - 0x00007ffae1e93000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ffae2130000 - 0x00007ffae2148000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffadd060000 - 0x00007ffadd06a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ffae1540000 - 0x00007ffae1772000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffae4610000 - 0x00007ffae499d000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffae4b60000 - 0x00007ffae4c37000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ffac0c10000 - 0x00007ffac0c42000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffae36d0000 - 0x00007ffae374b000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ffadc8a0000 - 0x00007ffadc8ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
0x00007ffacc130000 - 0x00007ffacc155000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
0x00007ffacea00000 - 0x00007ffacea18000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
0x00007ffae50d0000 - 0x00007ffae5938000 C:\WINDOWS\System32\SHELL32.dll
|
||||
0x00007ffae0b80000 - 0x00007ffae147e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||
0x00007ffae0a40000 - 0x00007ffae0b7f000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||
0x00007ffae3da0000 - 0x00007ffae3e99000 C:\WINDOWS\System32\SHCORE.dll
|
||||
0x00007ffae3ae0000 - 0x00007ffae3b3e000 C:\WINDOWS\System32\shlwapi.dll
|
||||
0x00007ffae2f40000 - 0x00007ffae2f61000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||
0x00007ffacbbf0000 - 0x00007ffacbc09000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
0x00007ffadbcf0000 - 0x00007ffadbe26000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
|
||||
0x00007ffae25a0000 - 0x00007ffae2609000 C:\WINDOWS\system32\mswsock.dll
|
||||
0x00007ffaca810000 - 0x00007ffaca826000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
0x00007ffadba70000 - 0x00007ffadba80000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
0x00007ffacdfb0000 - 0x00007ffacdff5000 C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
0x00007ffae3fc0000 - 0x00007ffae4165000 C:\WINDOWS\System32\ole32.dll
|
||||
0x00007ffae2800000 - 0x00007ffae281b000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ffae2090000 - 0x00007ffae20c5000 C:\WINDOWS\system32\rsaenh.dll
|
||||
0x00007ffae26a0000 - 0x00007ffae26c8000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||
0x00007ffae2820000 - 0x00007ffae282c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ffae1b40000 - 0x00007ffae1b6d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffae4aa0000 - 0x00007ffae4aa9000 C:\WINDOWS\System32\NSI.dll
|
||||
0x00007ffadbc50000 - 0x00007ffadbc69000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||
0x00007ffadba40000 - 0x00007ffadba5f000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||
0x00007ffae1bb0000 - 0x00007ffae1ca8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||
0x00007ffac2760000 - 0x00007ffac27a5000 C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna14697987224277071266.dll
|
||||
0x00007ffae4c40000 - 0x00007ffae4c48000 C:\WINDOWS\System32\PSAPI.DLL
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server;C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106;C:\Users\dy20240402\AppData\Local\Temp\jna-242497435
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar
|
||||
java_command: c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\ss_ws --pipe=\\.\pipe\lsp-e2bcc257c017c5d1876936bf75df772c-sock
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
uintx AdaptiveSizePolicyWeight = 90 {product} {command line}
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uintx GCTimeRatio = 4 {product} {command line}
|
||||
size_t InitialHeapSize = 104857600 {product} {command line}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MaxNewSize = 357564416 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 524288 {product} {ergonomic}
|
||||
size_t MinHeapSize = 104857600 {product} {command line}
|
||||
size_t NewSize = 34603008 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
size_t OldSize = 70254592 {product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
bool UseParallelGC = true {product} {command line}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=off uptime,level,tags
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Program Files\Git\cmd;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 2 days 0:29 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (3511M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 4M)
|
||||
current process WorkingSet (physical memory assigned to process): 188M, peak: 248M
|
||||
current process commit charge ("private bytes"): 281M, peak: 336M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
782
hs_err_pid20672.log
Normal file
782
hs_err_pid20672.log
Normal file
@ -0,0 +1,782 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (malloc) failed to allocate 713376 bytes. Error detail: Chunk::new
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (arena.cpp:191), pid=20672, tid=2024
|
||||
#
|
||||
# JRE version: OpenJDK Runtime Environment Temurin-17.0.12+7 (17.0.12+7) (build 17.0.12+7)
|
||||
# Java VM: OpenJDK 64-Bit Server VM Temurin-17.0.12+7 (17.0.12+7, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\ss_ws --pipe=\\.\pipe\lsp-cf8f1730839101c1f6f6438583bf4f4a-sock
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 11 13:58:59 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 7.367372 seconds (0d 0h 0m 7s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000002c4868d2580): JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2024, stack(0x000000d31c900000,0x000000d31ca00000)]
|
||||
|
||||
|
||||
Current CompileTask:
|
||||
C2: 7367 4481 4 org.lombokweb.asm.ClassReader::readMethod (1066 bytes)
|
||||
|
||||
Stack: [0x000000d31c900000,0x000000d31ca00000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0xac9d4]
|
||||
V [jvm.dll+0xad01c]
|
||||
V [jvm.dll+0x2af96f]
|
||||
V [jvm.dll+0x5868d7]
|
||||
V [jvm.dll+0x2231c2]
|
||||
V [jvm.dll+0x21c432]
|
||||
V [jvm.dll+0x219be1]
|
||||
V [jvm.dll+0x1a58bd]
|
||||
V [jvm.dll+0x229a2d]
|
||||
V [jvm.dll+0x227bdc]
|
||||
V [jvm.dll+0x7ec1f7]
|
||||
V [jvm.dll+0x7e65dc]
|
||||
V [jvm.dll+0x67e7f7]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x000002c4868c7420, length=44, elements={
|
||||
0x000002c4e9adb450, 0x000002c4fd962020, 0x000002c4fd9652b0, 0x000002c4fd96d070,
|
||||
0x000002c4fd96da40, 0x000002c4fea60da0, 0x000002c4fea37eb0, 0x000002c4fea3d3a0,
|
||||
0x000002c4fea645c0, 0x000002c4fea64ed0, 0x000002c4febca740, 0x000002c4febc74a0,
|
||||
0x000002c4febc79b0, 0x000002c4febcac50, 0x000002c4febca230, 0x000002c4febc7ec0,
|
||||
0x000002c4febc9d20, 0x000002c4febc83d0, 0x000002c4febc8df0, 0x000002c4febc9300,
|
||||
0x000002c4febc9810, 0x000002c4863d9970, 0x000002c4863d8530, 0x000002c4863d61c0,
|
||||
0x000002c4863d8a40, 0x000002c4863d9460, 0x000002c4863dbce0, 0x000002c4863dc1f0,
|
||||
0x000002c4863d70f0, 0x000002c4863d66d0, 0x000002c4863d7600, 0x000002c4863d6be0,
|
||||
0x000002c4863d9e80, 0x000002c4863d8f50, 0x000002c4863dc700, 0x000002c4863d5cb0,
|
||||
0x000002c4863da390, 0x000002c4863dcc10, 0x000002c4863d57a0, 0x000002c4863da8a0,
|
||||
0x000002c4863dadb0, 0x000002c4863d8020, 0x000002c4868d2580, 0x000002c484b91340
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x000002c4e9adb450 JavaThread "main" [_thread_blocked, id=19696, stack(0x000000d31a800000,0x000000d31a900000)]
|
||||
0x000002c4fd962020 JavaThread "Reference Handler" daemon [_thread_blocked, id=9704, stack(0x000000d31ab00000,0x000000d31ac00000)]
|
||||
0x000002c4fd9652b0 JavaThread "Finalizer" daemon [_thread_blocked, id=13124, stack(0x000000d31ac00000,0x000000d31ad00000)]
|
||||
0x000002c4fd96d070 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11344, stack(0x000000d31ad00000,0x000000d31ae00000)]
|
||||
0x000002c4fd96da40 JavaThread "Attach Listener" daemon [_thread_blocked, id=3052, stack(0x000000d31ae00000,0x000000d31af00000)]
|
||||
0x000002c4fea60da0 JavaThread "Service Thread" daemon [_thread_blocked, id=19036, stack(0x000000d31af00000,0x000000d31b000000)]
|
||||
0x000002c4fea37eb0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=10776, stack(0x000000d31b000000,0x000000d31b100000)]
|
||||
0x000002c4fea3d3a0 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=22864, stack(0x000000d31b100000,0x000000d31b200000)]
|
||||
0x000002c4fea645c0 JavaThread "C1 CompilerThread0" daemon [_thread_in_native, id=17744, stack(0x000000d31b200000,0x000000d31b300000)]
|
||||
0x000002c4fea64ed0 JavaThread "Sweeper thread" daemon [_thread_blocked, id=12636, stack(0x000000d31b300000,0x000000d31b400000)]
|
||||
0x000002c4febca740 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=6888, stack(0x000000d31b400000,0x000000d31b500000)]
|
||||
0x000002c4febc74a0 JavaThread "Notification Thread" daemon [_thread_blocked, id=14484, stack(0x000000d31b500000,0x000000d31b600000)]
|
||||
0x000002c4febc79b0 JavaThread "Active Thread: Equinox Container: 817379c0-f955-481d-94cc-6b419ca2bf6a" [_thread_blocked, id=2952, stack(0x000000d31b800000,0x000000d31b900000)]
|
||||
0x000002c4febcac50 JavaThread "Framework Event Dispatcher: Equinox Container: 817379c0-f955-481d-94cc-6b419ca2bf6a" daemon [_thread_blocked, id=9760, stack(0x000000d31bf00000,0x000000d31c000000)]
|
||||
0x000002c4febca230 JavaThread "Start Level: Equinox Container: 817379c0-f955-481d-94cc-6b419ca2bf6a" daemon [_thread_blocked, id=11984, stack(0x000000d31c000000,0x000000d31c100000)]
|
||||
0x000002c4febc7ec0 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=18252, stack(0x000000d31c100000,0x000000d31c200000)]
|
||||
0x000002c4febc9d20 JavaThread "SCR Component Registry" daemon [_thread_blocked, id=4696, stack(0x000000d31c300000,0x000000d31c400000)]
|
||||
0x000002c4febc83d0 JavaThread "Worker-JM" [_thread_blocked, id=15048, stack(0x000000d31c400000,0x000000d31c500000)]
|
||||
0x000002c4febc8df0 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=15208, stack(0x000000d31b700000,0x000000d31b800000)]
|
||||
0x000002c4febc9300 JavaThread "Worker-0" [_thread_blocked, id=5104, stack(0x000000d31c700000,0x000000d31c800000)]
|
||||
0x000002c4febc9810 JavaThread "Worker-1" [_thread_blocked, id=12828, stack(0x000000d31c800000,0x000000d31c900000)]
|
||||
0x000002c4863d9970 JavaThread "Thread-2" daemon [_thread_in_native, id=21200, stack(0x000000d31ca00000,0x000000d31cb00000)]
|
||||
0x000002c4863d8530 JavaThread "Thread-3" daemon [_thread_in_native, id=9272, stack(0x000000d31cd00000,0x000000d31ce00000)]
|
||||
0x000002c4863d61c0 JavaThread "Thread-4" daemon [_thread_in_native, id=13336, stack(0x000000d31ce00000,0x000000d31cf00000)]
|
||||
0x000002c4863d8a40 JavaThread "Thread-5" daemon [_thread_in_native, id=7452, stack(0x000000d31cf00000,0x000000d31d000000)]
|
||||
0x000002c4863d9460 JavaThread "Thread-6" daemon [_thread_in_native, id=23084, stack(0x000000d31d000000,0x000000d31d100000)]
|
||||
0x000002c4863dbce0 JavaThread "Thread-7" daemon [_thread_in_native, id=12720, stack(0x000000d31d100000,0x000000d31d200000)]
|
||||
0x000002c4863dc1f0 JavaThread "Thread-8" daemon [_thread_in_native, id=20024, stack(0x000000d31d200000,0x000000d31d300000)]
|
||||
0x000002c4863d70f0 JavaThread "Thread-9" daemon [_thread_in_native, id=21552, stack(0x000000d31d300000,0x000000d31d400000)]
|
||||
0x000002c4863d66d0 JavaThread "Thread-10" daemon [_thread_in_native, id=19324, stack(0x000000d31d400000,0x000000d31d500000)]
|
||||
0x000002c4863d7600 JavaThread "Thread-11" daemon [_thread_in_native, id=12504, stack(0x000000d31d500000,0x000000d31d600000)]
|
||||
0x000002c4863d6be0 JavaThread "Thread-12" daemon [_thread_in_native, id=16908, stack(0x000000d31d600000,0x000000d31d700000)]
|
||||
0x000002c4863d9e80 JavaThread "Thread-13" daemon [_thread_in_native, id=12832, stack(0x000000d31d700000,0x000000d31d800000)]
|
||||
0x000002c4863d8f50 JavaThread "Thread-14" daemon [_thread_in_native, id=11316, stack(0x000000d31d800000,0x000000d31d900000)]
|
||||
0x000002c4863dc700 JavaThread "pool-2-thread-1" [_thread_blocked, id=12384, stack(0x000000d31d900000,0x000000d31da00000)]
|
||||
0x000002c4863d5cb0 JavaThread "WorkspaceEventsHandler" [_thread_blocked, id=9988, stack(0x000000d31da00000,0x000000d31db00000)]
|
||||
0x000002c4863da390 JavaThread "pool-1-thread-1" [_thread_blocked, id=16888, stack(0x000000d31db00000,0x000000d31dc00000)]
|
||||
0x000002c4863dcc10 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_in_vm, id=19080, stack(0x000000d31dc00000,0x000000d31dd00000)]
|
||||
0x000002c4863d57a0 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_in_vm, id=23040, stack(0x000000d31dd00000,0x000000d31de00000)]
|
||||
0x000002c4863da8a0 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_in_vm, id=12044, stack(0x000000d31de00000,0x000000d31df00000)]
|
||||
0x000002c4863dadb0 JavaThread "ForkJoinPool.commonPool-worker-4" daemon [_thread_blocked, id=7224, stack(0x000000d31df00000,0x000000d31e000000)]
|
||||
0x000002c4863d8020 JavaThread "Worker-2" [_thread_blocked, id=21012, stack(0x000000d31e000000,0x000000d31e100000)]
|
||||
=>0x000002c4868d2580 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2024, stack(0x000000d31c900000,0x000000d31ca00000)]
|
||||
0x000002c484b91340 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=20432, stack(0x000000d31e100000,0x000000d31e200000)]
|
||||
|
||||
Other Threads:
|
||||
0x000002c4fea02860 VMThread "VM Thread" [stack: 0x000000d31aa00000,0x000000d31ab00000] [id=8688]
|
||||
0x000002c48421f790 WatcherThread [stack: 0x000000d31b600000,0x000000d31b700000] [id=11028]
|
||||
0x000002c4e9af02b0 GCTaskThread "GC Thread#0" [stack: 0x000000d31a900000,0x000000d31aa00000] [id=15052]
|
||||
0x000002c48473a860 GCTaskThread "GC Thread#1" [stack: 0x000000d31b900000,0x000000d31ba00000] [id=7800]
|
||||
0x000002c48473af40 GCTaskThread "GC Thread#2" [stack: 0x000000d31ba00000,0x000000d31bb00000] [id=14252]
|
||||
0x000002c48457e590 GCTaskThread "GC Thread#3" [stack: 0x000000d31bb00000,0x000000d31bc00000] [id=6764]
|
||||
0x000002c48457e850 GCTaskThread "GC Thread#4" [stack: 0x000000d31bc00000,0x000000d31bd00000] [id=17688]
|
||||
0x000002c484580d40 GCTaskThread "GC Thread#5" [stack: 0x000000d31bd00000,0x000000d31be00000] [id=11780]
|
||||
0x000002c484581000 GCTaskThread "GC Thread#6" [stack: 0x000000d31be00000,0x000000d31bf00000] [id=11604]
|
||||
0x000002c484301ba0 GCTaskThread "GC Thread#7" [stack: 0x000000d31c200000,0x000000d31c300000] [id=18604]
|
||||
0x000002c4850fdd10 GCTaskThread "GC Thread#8" [stack: 0x000000d31c500000,0x000000d31c600000] [id=20424]
|
||||
0x000002c484ec6090 GCTaskThread "GC Thread#9" [stack: 0x000000d31c600000,0x000000d31c700000] [id=22104]
|
||||
|
||||
Threads with active compile tasks:
|
||||
C2 CompilerThread0 7424 4345 ! 4 org.eclipse.osgi.internal.loader.classpath.ClasspathManager::findLocalClass (210 bytes)
|
||||
C1 CompilerThread0 7424 4596 3 org.eclipse.jdt.internal.compiler.parser.Parser::consumeRule (7920 bytes)
|
||||
C2 CompilerThread1 7424 4481 4 org.lombokweb.asm.ClassReader::readMethod (1066 bytes)
|
||||
C2 CompilerThread2 7424 4488 4 org.eclipse.jdt.internal.core.JarPackageFragmentRoot::initRawPackageInfo (342 bytes)
|
||||
|
||||
VM state: not at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||
[0x000002c4e9ad6290] Metaspace_lock - owner thread: 0x000002c4863d57a0
|
||||
[0x000002c4e9ad8380] MethodData_lock - owner thread: 0x000002c4863dcc10
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) not mapped
|
||||
Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000
|
||||
|
||||
GC Precious Log:
|
||||
CPUs: 12 total, 12 available
|
||||
Memory: 16251M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (32-bit)
|
||||
Alignments: Space 512K, Generation 512K, Heap 2M
|
||||
Heap Min Capacity: 100M
|
||||
Heap Initial Capacity: 100M
|
||||
Heap Max Capacity: 1G
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 10
|
||||
|
||||
Heap:
|
||||
PSYoungGen total 22528K, used 1683K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000)
|
||||
eden space 21504K, 5% used [0x00000000eab00000,0x00000000eac0ccf8,0x00000000ec000000)
|
||||
from space 1024K, 59% used [0x00000000ec100000,0x00000000ec198000,0x00000000ec200000)
|
||||
to space 512K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec280000)
|
||||
ParOldGen total 68608K, used 35190K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 51% used [0x00000000c0000000,0x00000000c225da00,0x00000000c4300000)
|
||||
Metaspace used 45559K, committed 46272K, reserved 1114112K
|
||||
class space used 4629K, committed 4992K, reserved 1048576K
|
||||
|
||||
Card table byte_map: [0x000002c4e94a0000,0x000002c4e96b0000] _byte_map_base: 0x000002c4e8ea0000
|
||||
|
||||
Marking Bits: (ParMarkBitMap*) 0x00007ffa94a958b0
|
||||
Begin Bits: [0x000002c4fb770000, 0x000002c4fc770000)
|
||||
End Bits: [0x000002c4fc770000, 0x000002c4fd770000)
|
||||
|
||||
Polling page: 0x000002c4e9290000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 39.97 MB used.
|
||||
Class: 4.52 MB used.
|
||||
Both: 44.49 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 40.31 MB ( 63%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 4.88 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 45.19 MB ( 4%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 7.55 MB
|
||||
Class: 11.09 MB
|
||||
Both: 18.64 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 58.38 MB
|
||||
CDS: off
|
||||
MetaspaceReclaimPolicy: balanced
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- new_chunks_are_fully_committed: 0.
|
||||
- uncommit_free_chunks: 1.
|
||||
- use_allocation_guard: 0.
|
||||
- handle_deallocations: 1.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 6.
|
||||
num_arena_births: 410.
|
||||
num_arena_deaths: 14.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 723.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 20.
|
||||
num_chunks_taken_from_freelist: 1931.
|
||||
num_chunk_merges: 11.
|
||||
num_chunk_splits: 1239.
|
||||
num_chunks_enlarged: 829.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=120000Kb used=2324Kb max_used=2324Kb free=117675Kb
|
||||
bounds [0x000002c4f4240000, 0x000002c4f44b0000, 0x000002c4fb770000]
|
||||
CodeHeap 'profiled nmethods': size=120000Kb used=9790Kb max_used=9790Kb free=110209Kb
|
||||
bounds [0x000002c4ec770000, 0x000002c4ed100000, 0x000002c4f3ca0000]
|
||||
CodeHeap 'non-nmethods': size=5760Kb used=1323Kb max_used=1386Kb free=4436Kb
|
||||
bounds [0x000002c4f3ca0000, 0x000002c4f3f10000, 0x000002c4f4240000]
|
||||
total_blobs=5224 nmethods=4563 adapters=575
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 4577 1 org.eclipse.jdt.internal.compiler.ast.TypeReference::getAnnotatableLevels (2 bytes)
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 nmethod 4577 0x000002c4f4483790 code [0x000002c4f4483920, 0x000002c4f44839f8]
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 4578 1 org.eclipse.jdt.internal.core.AnnotatableInfo::setNameSourceStart (6 bytes)
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 nmethod 4578 0x000002c4f4483a90 code [0x000002c4f4483c20, 0x000002c4f4483cf8]
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 4579 1 org.eclipse.jdt.internal.core.AnnotatableInfo::setNameSourceEnd (6 bytes)
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 nmethod 4579 0x000002c4f4483d90 code [0x000002c4f4483f20, 0x000002c4f4483ff8]
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 4575 1 org.eclipse.core.internal.resources.ResourceInfo::getFileStoreRoot (5 bytes)
|
||||
Event: 7.316 Thread 0x000002c4fea645c0 nmethod 4575 0x000002c4f4484090 code [0x000002c4f4484220, 0x000002c4f44842f8]
|
||||
Event: 7.318 Thread 0x000002c4fea645c0 4580 2 org.eclipse.core.internal.filesystem.local.LocalFile::<init> (18 bytes)
|
||||
Event: 7.319 Thread 0x000002c4fea645c0 nmethod 4580 0x000002c4ed0f5a10 code [0x000002c4ed0f5ba0, 0x000002c4ed0f5d08]
|
||||
Event: 7.320 Thread 0x000002c4fea645c0 4581 3 org.eclipse.jdt.internal.core.JavaElement::getParent (5 bytes)
|
||||
Event: 7.320 Thread 0x000002c4fea645c0 nmethod 4581 0x000002c4ed0f5e10 code [0x000002c4ed0f5fa0, 0x000002c4ed0f6138]
|
||||
Event: 7.323 Thread 0x000002c4fea645c0 4582 1 org.eclipse.jdt.internal.core.SourceMethod::getElementType (3 bytes)
|
||||
Event: 7.323 Thread 0x000002c4fea645c0 nmethod 4582 0x000002c4f4484390 code [0x000002c4f4484520, 0x000002c4f44845f8]
|
||||
Event: 7.323 Thread 0x000002c4fea645c0 4583 ! 2 org.eclipse.jdt.ls.core.internal.ConnectionStreamFactory$NamedPipeInputStream::read (128 bytes)
|
||||
Event: 7.323 Thread 0x000002c4fea645c0 nmethod 4583 0x000002c4ed0f6210 code [0x000002c4ed0f6420, 0x000002c4ed0f67f8]
|
||||
Event: 7.325 Thread 0x000002c4fea645c0 4584 ! 2 java.util.regex.Pattern::closure (276 bytes)
|
||||
Event: 7.327 Thread 0x000002c4fea645c0 nmethod 4584 0x000002c4ed0f6b10 code [0x000002c4ed0f6e00, 0x000002c4ed0f7948]
|
||||
Event: 7.343 Thread 0x000002c4fea645c0 4586 2 org.eclipse.jdt.internal.core.manipulation.JavaElementLabelComposerCore::getFlag (12 bytes)
|
||||
Event: 7.344 Thread 0x000002c4fea645c0 nmethod 4586 0x000002c4ed0f8010 code [0x000002c4ed0f81a0, 0x000002c4ed0f82b8]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 6.637 GC heap before
|
||||
{Heap before GC invocations=19 (full 2):
|
||||
PSYoungGen total 23552K, used 23094K [0x00000000eab00000, 0x00000000ec400000, 0x0000000100000000)
|
||||
eden space 22016K, 99% used [0x00000000eab00000,0x00000000ec07f7e8,0x00000000ec080000)
|
||||
from space 1536K, 70% used [0x00000000ec280000,0x00000000ec38e260,0x00000000ec400000)
|
||||
to space 1536K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec280000)
|
||||
ParOldGen total 68608K, used 22594K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 32% used [0x00000000c0000000,0x00000000c1610aa8,0x00000000c4300000)
|
||||
Metaspace used 42294K, committed 43008K, reserved 1114112K
|
||||
class space used 4302K, committed 4608K, reserved 1048576K
|
||||
}
|
||||
Event: 6.638 GC heap after
|
||||
{Heap after GC invocations=19 (full 2):
|
||||
PSYoungGen total 22528K, used 416K [0x00000000eab00000, 0x00000000ec300000, 0x0000000100000000)
|
||||
eden space 22016K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec080000)
|
||||
from space 512K, 81% used [0x00000000ec100000,0x00000000ec168000,0x00000000ec180000)
|
||||
to space 1024K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 23533K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 34% used [0x00000000c0000000,0x00000000c16fb4b8,0x00000000c4300000)
|
||||
Metaspace used 42294K, committed 43008K, reserved 1114112K
|
||||
class space used 4302K, committed 4608K, reserved 1048576K
|
||||
}
|
||||
Event: 6.849 GC heap before
|
||||
{Heap before GC invocations=20 (full 2):
|
||||
PSYoungGen total 22528K, used 22432K [0x00000000eab00000, 0x00000000ec300000, 0x0000000100000000)
|
||||
eden space 22016K, 100% used [0x00000000eab00000,0x00000000ec080000,0x00000000ec080000)
|
||||
from space 512K, 81% used [0x00000000ec100000,0x00000000ec168000,0x00000000ec180000)
|
||||
to space 1024K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 23533K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 34% used [0x00000000c0000000,0x00000000c16fb4b8,0x00000000c4300000)
|
||||
Metaspace used 43502K, committed 44224K, reserved 1114112K
|
||||
class space used 4421K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.852 GC heap after
|
||||
{Heap after GC invocations=20 (full 2):
|
||||
PSYoungGen total 22528K, used 1011K [0x00000000eab00000, 0x00000000ec480000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 1024K, 98% used [0x00000000ec200000,0x00000000ec2fcf30,0x00000000ec300000)
|
||||
to space 2048K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 24313K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 35% used [0x00000000c0000000,0x00000000c17be7c8,0x00000000c4300000)
|
||||
Metaspace used 43502K, committed 44224K, reserved 1114112K
|
||||
class space used 4421K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.893 GC heap before
|
||||
{Heap before GC invocations=21 (full 2):
|
||||
PSYoungGen total 22528K, used 22515K [0x00000000eab00000, 0x00000000ec480000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 1024K, 98% used [0x00000000ec200000,0x00000000ec2fcf30,0x00000000ec300000)
|
||||
to space 2048K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 24313K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 35% used [0x00000000c0000000,0x00000000c17be7c8,0x00000000c4300000)
|
||||
Metaspace used 43574K, committed 44288K, reserved 1114112K
|
||||
class space used 4427K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.897 GC heap after
|
||||
{Heap after GC invocations=21 (full 2):
|
||||
PSYoungGen total 23552K, used 2021K [0x00000000eab00000, 0x00000000ec900000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 2048K, 98% used [0x00000000ec000000,0x00000000ec1f9708,0x00000000ec200000)
|
||||
to space 4608K, 0% used [0x00000000ec480000,0x00000000ec480000,0x00000000ec900000)
|
||||
ParOldGen total 68608K, used 26040K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 37% used [0x00000000c0000000,0x00000000c196e0c0,0x00000000c4300000)
|
||||
Metaspace used 43574K, committed 44288K, reserved 1114112K
|
||||
class space used 4427K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.932 GC heap before
|
||||
{Heap before GC invocations=22 (full 2):
|
||||
PSYoungGen total 23552K, used 23525K [0x00000000eab00000, 0x00000000ec900000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 2048K, 98% used [0x00000000ec000000,0x00000000ec1f9708,0x00000000ec200000)
|
||||
to space 4608K, 0% used [0x00000000ec480000,0x00000000ec480000,0x00000000ec900000)
|
||||
ParOldGen total 68608K, used 26040K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 37% used [0x00000000c0000000,0x00000000c196e0c0,0x00000000c4300000)
|
||||
Metaspace used 43591K, committed 44288K, reserved 1114112K
|
||||
class space used 4428K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.935 GC heap after
|
||||
{Heap after GC invocations=22 (full 2):
|
||||
PSYoungGen total 23552K, used 1658K [0x00000000eab00000, 0x00000000ec680000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 2048K, 80% used [0x00000000ec480000,0x00000000ec61e990,0x00000000ec680000)
|
||||
to space 2560K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 27991K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 40% used [0x00000000c0000000,0x00000000c1b55e30,0x00000000c4300000)
|
||||
Metaspace used 43591K, committed 44288K, reserved 1114112K
|
||||
class space used 4428K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.991 GC heap before
|
||||
{Heap before GC invocations=23 (full 2):
|
||||
PSYoungGen total 23552K, used 23162K [0x00000000eab00000, 0x00000000ec680000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 2048K, 80% used [0x00000000ec480000,0x00000000ec61e990,0x00000000ec680000)
|
||||
to space 2560K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 27991K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 40% used [0x00000000c0000000,0x00000000c1b55e30,0x00000000c4300000)
|
||||
Metaspace used 43614K, committed 44288K, reserved 1114112K
|
||||
class space used 4430K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 6.996 GC heap after
|
||||
{Heap after GC invocations=23 (full 2):
|
||||
PSYoungGen total 24064K, used 2555K [0x00000000eab00000, 0x00000000ec600000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 2560K, 99% used [0x00000000ec180000,0x00000000ec3fec80,0x00000000ec400000)
|
||||
to space 2048K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec600000)
|
||||
ParOldGen total 68608K, used 28999K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 42% used [0x00000000c0000000,0x00000000c1c51e30,0x00000000c4300000)
|
||||
Metaspace used 43614K, committed 44288K, reserved 1114112K
|
||||
class space used 4430K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 7.026 GC heap before
|
||||
{Heap before GC invocations=24 (full 2):
|
||||
PSYoungGen total 24064K, used 24059K [0x00000000eab00000, 0x00000000ec600000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 2560K, 99% used [0x00000000ec180000,0x00000000ec3fec80,0x00000000ec400000)
|
||||
to space 2048K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec600000)
|
||||
ParOldGen total 68608K, used 28999K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 42% used [0x00000000c0000000,0x00000000c1c51e30,0x00000000c4300000)
|
||||
Metaspace used 43621K, committed 44288K, reserved 1114112K
|
||||
class space used 4431K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 7.040 GC heap after
|
||||
{Heap after GC invocations=24 (full 2):
|
||||
PSYoungGen total 23552K, used 2043K [0x00000000eab00000, 0x00000000ec800000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 2048K, 99% used [0x00000000ec400000,0x00000000ec5fecd8,0x00000000ec600000)
|
||||
to space 4096K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 30725K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 44% used [0x00000000c0000000,0x00000000c1e016c0,0x00000000c4300000)
|
||||
Metaspace used 43621K, committed 44288K, reserved 1114112K
|
||||
class space used 4431K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 7.059 GC heap before
|
||||
{Heap before GC invocations=25 (full 2):
|
||||
PSYoungGen total 23552K, used 23547K [0x00000000eab00000, 0x00000000ec800000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 2048K, 99% used [0x00000000ec400000,0x00000000ec5fecd8,0x00000000ec600000)
|
||||
to space 4096K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec400000)
|
||||
ParOldGen total 68608K, used 30725K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 44% used [0x00000000c0000000,0x00000000c1e016c0,0x00000000c4300000)
|
||||
Metaspace used 43862K, committed 44544K, reserved 1114112K
|
||||
class space used 4433K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 7.061 GC heap after
|
||||
{Heap after GC invocations=25 (full 2):
|
||||
PSYoungGen total 23040K, used 1472K [0x00000000eab00000, 0x00000000ec500000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 1536K, 95% used [0x00000000ec000000,0x00000000ec170000,0x00000000ec180000)
|
||||
to space 2560K, 0% used [0x00000000ec280000,0x00000000ec280000,0x00000000ec500000)
|
||||
ParOldGen total 68608K, used 31973K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 46% used [0x00000000c0000000,0x00000000c1f396c0,0x00000000c4300000)
|
||||
Metaspace used 43862K, committed 44544K, reserved 1114112K
|
||||
class space used 4433K, committed 4736K, reserved 1048576K
|
||||
}
|
||||
Event: 7.107 GC heap before
|
||||
{Heap before GC invocations=26 (full 2):
|
||||
PSYoungGen total 23040K, used 22976K [0x00000000eab00000, 0x00000000ec500000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 1536K, 95% used [0x00000000ec000000,0x00000000ec170000,0x00000000ec180000)
|
||||
to space 2560K, 0% used [0x00000000ec280000,0x00000000ec280000,0x00000000ec500000)
|
||||
ParOldGen total 68608K, used 31973K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 46% used [0x00000000c0000000,0x00000000c1f396c0,0x00000000c4300000)
|
||||
Metaspace used 44161K, committed 44928K, reserved 1114112K
|
||||
class space used 4474K, committed 4800K, reserved 1048576K
|
||||
}
|
||||
Event: 7.109 GC heap after
|
||||
{Heap after GC invocations=26 (full 2):
|
||||
PSYoungGen total 22528K, used 928K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 1024K, 90% used [0x00000000ec280000,0x00000000ec368000,0x00000000ec380000)
|
||||
to space 1536K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 33173K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 48% used [0x00000000c0000000,0x00000000c20656c0,0x00000000c4300000)
|
||||
Metaspace used 44161K, committed 44928K, reserved 1114112K
|
||||
class space used 4474K, committed 4800K, reserved 1048576K
|
||||
}
|
||||
Event: 7.138 GC heap before
|
||||
{Heap before GC invocations=27 (full 2):
|
||||
PSYoungGen total 22528K, used 22432K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 1024K, 90% used [0x00000000ec280000,0x00000000ec368000,0x00000000ec380000)
|
||||
to space 1536K, 0% used [0x00000000ec080000,0x00000000ec080000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 33173K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 48% used [0x00000000c0000000,0x00000000c20656c0,0x00000000c4300000)
|
||||
Metaspace used 44263K, committed 45056K, reserved 1114112K
|
||||
class space used 4484K, committed 4864K, reserved 1048576K
|
||||
}
|
||||
Event: 7.139 GC heap after
|
||||
{Heap after GC invocations=27 (full 2):
|
||||
PSYoungGen total 23040K, used 992K [0x00000000eab00000, 0x00000000ec300000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 1536K, 64% used [0x00000000ec080000,0x00000000ec178000,0x00000000ec200000)
|
||||
to space 1024K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 33990K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 49% used [0x00000000c0000000,0x00000000c2131a00,0x00000000c4300000)
|
||||
Metaspace used 44263K, committed 45056K, reserved 1114112K
|
||||
class space used 4484K, committed 4864K, reserved 1048576K
|
||||
}
|
||||
Event: 7.185 GC heap before
|
||||
{Heap before GC invocations=28 (full 2):
|
||||
PSYoungGen total 23040K, used 22496K [0x00000000eab00000, 0x00000000ec300000, 0x0000000100000000)
|
||||
eden space 21504K, 100% used [0x00000000eab00000,0x00000000ec000000,0x00000000ec000000)
|
||||
from space 1536K, 64% used [0x00000000ec080000,0x00000000ec178000,0x00000000ec200000)
|
||||
to space 1024K, 0% used [0x00000000ec200000,0x00000000ec200000,0x00000000ec300000)
|
||||
ParOldGen total 68608K, used 33990K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 49% used [0x00000000c0000000,0x00000000c2131a00,0x00000000c4300000)
|
||||
Metaspace used 44474K, committed 45248K, reserved 1114112K
|
||||
class space used 4508K, committed 4864K, reserved 1048576K
|
||||
}
|
||||
Event: 7.186 GC heap after
|
||||
{Heap after GC invocations=28 (full 2):
|
||||
PSYoungGen total 22528K, used 992K [0x00000000eab00000, 0x00000000ec300000, 0x0000000100000000)
|
||||
eden space 21504K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec000000)
|
||||
from space 1024K, 96% used [0x00000000ec200000,0x00000000ec2f8000,0x00000000ec300000)
|
||||
to space 1024K, 0% used [0x00000000ec100000,0x00000000ec100000,0x00000000ec200000)
|
||||
ParOldGen total 68608K, used 34590K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000)
|
||||
object space 68608K, 50% used [0x00000000c0000000,0x00000000c21c7a00,0x00000000c4300000)
|
||||
Metaspace used 44474K, committed 45248K, reserved 1114112K
|
||||
class space used 4508K, committed 4864K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (10 events):
|
||||
Event: 0.018 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
Event: 0.212 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.242 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
Event: 0.270 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
Event: 0.274 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
Event: 0.288 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.306 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
Event: 0.449 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
Event: 1.618 Loaded shared library C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
Event: 2.554 Loaded shared library C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna17307153211066052976.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 6.906 Thread 0x000002c4863da390 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002c4f435d0a8 relative=0x0000000000006ae8
|
||||
Event: 6.906 Thread 0x000002c4863da390 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002c4f435d0a8 method=lombok.patcher.PatchScript$MethodPatcher.visitMethod(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; @ 101 c
|
||||
Event: 6.906 Thread 0x000002c4863da390 DEOPT PACKING pc=0x000002c4f435d0a8 sp=0x000000d31dbf8bb0
|
||||
Event: 6.906 Thread 0x000002c4863da390 DEOPT UNPACKING pc=0x000002c4f3cf66a3 sp=0x000000d31dbf8b18 mode 2
|
||||
Event: 6.906 Thread 0x000002c4863da390 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002c4f435d0a8 relative=0x0000000000006ae8
|
||||
Event: 6.906 Thread 0x000002c4863da390 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002c4f435d0a8 method=lombok.patcher.PatchScript$MethodPatcher.visitMethod(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; @ 101 c
|
||||
Event: 6.906 Thread 0x000002c4863da390 DEOPT PACKING pc=0x000002c4f435d0a8 sp=0x000000d31dbf8bb0
|
||||
Event: 6.906 Thread 0x000002c4863da390 DEOPT UNPACKING pc=0x000002c4f3cf66a3 sp=0x000000d31dbf8b18 mode 2
|
||||
Event: 6.906 Thread 0x000002c4863da390 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002c4f435d0a8 relative=0x0000000000006ae8
|
||||
Event: 6.906 Thread 0x000002c4863da390 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002c4f435d0a8 method=lombok.patcher.PatchScript$MethodPatcher.visitMethod(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; @ 101 c
|
||||
Event: 6.906 Thread 0x000002c4863da390 DEOPT PACKING pc=0x000002c4f435d0a8 sp=0x000000d31dbf8bb0
|
||||
Event: 6.906 Thread 0x000002c4863da390 DEOPT UNPACKING pc=0x000002c4f3cf66a3 sp=0x000000d31dbf8b18 mode 2
|
||||
Event: 6.927 Thread 0x000002c4863da8a0 Uncommon trap: trap_request=0x000000ec fr.pc=0x000002c4f4417f80 relative=0x0000000000003180
|
||||
Event: 6.932 Thread 0x000002c4863da8a0 Uncommon trap: reason=unloaded action=reinterpret pc=0x000002c4f4417f80 method=org.eclipse.jdt.core.JavaConventions.validateIdentifier(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lorg/eclipse/core/runtime/IStatus; @ 13 c2
|
||||
Event: 6.935 Thread 0x000002c4863da8a0 DEOPT PACKING pc=0x000002c4f4417f80 sp=0x000000d31defe340
|
||||
Event: 6.935 Thread 0x000002c4863da8a0 DEOPT UNPACKING pc=0x000002c4f3cf66a3 sp=0x000000d31defe248 mode 2
|
||||
Event: 7.096 Thread 0x000002c4863dadb0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002c4f44047a4 relative=0x00000000000006e4
|
||||
Event: 7.096 Thread 0x000002c4863dadb0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002c4f44047a4 method=org.eclipse.jdt.internal.core.util.HashtableOfArrayToObject.get([Ljava/lang/Object;)Ljava/lang/Object; @ 64 c2
|
||||
Event: 7.096 Thread 0x000002c4863dadb0 DEOPT PACKING pc=0x000002c4f44047a4 sp=0x000000d31dffe590
|
||||
Event: 7.096 Thread 0x000002c4863dadb0 DEOPT UNPACKING pc=0x000002c4f3cf66a3 sp=0x000000d31dffe550 mode 2
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 6.702 Loading class java/util/stream/Nodes$IntArrayNode done
|
||||
Event: 6.702 Loading class java/util/stream/Nodes$IntFixedNodeBuilder done
|
||||
Event: 6.702 Loading class java/util/stream/ReferencePipeline$4$1
|
||||
Event: 6.702 Loading class java/util/stream/ReferencePipeline$4$1 done
|
||||
Event: 6.769 Loading class java/util/Hashtable$ValueCollection
|
||||
Event: 6.769 Loading class java/util/Hashtable$ValueCollection done
|
||||
Event: 6.778 Loading class java/util/regex/PatternSyntaxException
|
||||
Event: 6.778 Loading class java/util/regex/PatternSyntaxException done
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$MatchKind
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$MatchKind done
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps done
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$MatchOp
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$MatchOp done
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$BooleanTerminalSink
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$BooleanTerminalSink done
|
||||
Event: 7.102 Loading class java/util/stream/MatchOps$1MatchSink
|
||||
Event: 7.103 Loading class java/util/stream/MatchOps$1MatchSink done
|
||||
Event: 7.321 Loading class java/util/WeakHashMap$KeyIterator
|
||||
Event: 7.321 Loading class java/util/WeakHashMap$KeyIterator done
|
||||
|
||||
Classes unloaded (7 events):
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x000000010021b400 'java/lang/invoke/LambdaForm$MH+0x000000010021b400'
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x000000010021b000 'java/lang/invoke/LambdaForm$MH+0x000000010021b000'
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x000000010021ac00 'java/lang/invoke/LambdaForm$MH+0x000000010021ac00'
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x000000010021a800 'java/lang/invoke/LambdaForm$MH+0x000000010021a800'
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x000000010021a400 'java/lang/invoke/LambdaForm$BMH+0x000000010021a400'
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x000000010021a000 'java/lang/invoke/LambdaForm$DMH+0x000000010021a000'
|
||||
Event: 2.369 Thread 0x000002c4fea02860 Unloading class 0x0000000100216400 'java/lang/invoke/LambdaForm$DMH+0x0000000100216400'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 4.653 Thread 0x000002c4863dadb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb817cd0}> (0x00000000eb817cd0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 4.653 Thread 0x000002c4863dadb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb818658}> (0x00000000eb818658)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 4.655 Thread 0x000002c4863dadb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb8194c0}> (0x00000000eb8194c0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 4.655 Thread 0x000002c4863dadb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb819e48}> (0x00000000eb819e48)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 4.656 Thread 0x000002c4863dadb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb81b9b8}> (0x00000000eb81b9b8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 4.656 Thread 0x000002c4863dadb0 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb81c340}> (0x00000000eb81c340)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 4.658 Thread 0x000002c4863dadb0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000eb830380}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000eb830380)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 4.669 Thread 0x000002c4863da8a0 Implicit null exception at 0x000002c4f43a7faa to 0x000002c4f43a83a4
|
||||
Event: 4.741 Thread 0x000002c4863da8a0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebb0b628}: 'java.lang.Object java.lang.invoke.Invokers$Holder.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000ebb0b628)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 4.926 Thread 0x000002c4febc9810 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ead464e8}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000000ead464e8)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 5.658 Thread 0x000002c4863da8a0 Exception <a 'java/lang/LinkageError'{0x00000000eb913e00}: loader lombok.launch.ShadowClassLoader @39e984ca attempted duplicate class definition for lombok.launch.PatchFixesHider$Transform. (lombok.launch.PatchFixesHider$Transform is in unnamed module of loader lombok.launch.ShadowClassLoader @39e984ca, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @13b5f73e)> (0x00000000eb913e00)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 5.659 Thread 0x000002c4863dadb0 Exception <a 'java/lang/LinkageError'{0x00000000eb9a2970}: loader lombok.launch.ShadowClassLoader @39e984ca attempted duplicate class definition for lombok.launch.PatchFixesHider$Transform. (lombok.launch.PatchFixesHider$Transform is in unnamed module of loader lombok.launch.ShadowClassLoader @39e984ca, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @13b5f73e)> (0x00000000eb9a2970)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 5.661 Thread 0x000002c4863d57a0 Exception <a 'java/lang/LinkageError'{0x00000000eb63bea8}: loader lombok.launch.ShadowClassLoader @39e984ca attempted duplicate class definition for lombok.launch.PatchFixesHider$Transform. (lombok.launch.PatchFixesHider$Transform is in unnamed module of loader lombok.launch.ShadowClassLoader @39e984ca, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @13b5f73e)> (0x00000000eb63bea8)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 6.703 Thread 0x000002c4863dadb0 Exception <a 'java/lang/LinkageError'{0x00000000eadd4a98}: loader lombok.launch.ShadowClassLoader @390241db attempted duplicate class definition for lombok.launch.PatchFixesHider$FieldInitializer. (lombok.launch.PatchFixesHider$FieldInitializer is in unnamed module of loader lombok.launch.ShadowClassLoader @390241db, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @68ce3559)> (0x00000000eadd4a98)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 6.703 Thread 0x000002c4863dcc10 Exception <a 'java/lang/LinkageError'{0x00000000eace0a48}: loader lombok.launch.ShadowClassLoader @390241db attempted duplicate class definition for lombok.launch.PatchFixesHider$FieldInitializer. (lombok.launch.PatchFixesHider$FieldInitializer is in unnamed module of loader lombok.launch.ShadowClassLoader @390241db, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @68ce3559)> (0x00000000eace0a48)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 6.703 Thread 0x000002c4863d57a0 Exception <a 'java/lang/LinkageError'{0x00000000eada4290}: loader lombok.launch.ShadowClassLoader @390241db attempted duplicate class definition for lombok.launch.PatchFixesHider$FieldInitializer. (lombok.launch.PatchFixesHider$FieldInitializer is in unnamed module of loader lombok.launch.ShadowClassLoader @390241db, parent loader org.eclipse.osgi.internal.loader.EquinoxClassLoader @68ce3559)> (0x00000000eada4290)
|
||||
thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 1723]
|
||||
Event: 7.101 Thread 0x000002c4863dadb0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebcecb60}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object)'> (0x00000000ebcecb60)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.101 Thread 0x000002c4863dadb0 Exception <a 'java/lang/IncompatibleClassChangeError'{0x00000000ebcf00f0}: Found class java.lang.Object, but interface was expected> (0x00000000ebcf00f0)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 826]
|
||||
Event: 7.101 Thread 0x000002c4863d57a0 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ebdce188}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object)'> (0x00000000ebdce188)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 7.102 Thread 0x000002c4863d57a0 Exception <a 'java/lang/IncompatibleClassChangeError'{0x00000000ebdd16f0}: Found class java.lang.Object, but interface was expected> (0x00000000ebdd16f0)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 826]
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 6.849 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 6.852 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 6.893 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 6.897 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 6.931 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 6.935 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 6.991 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 6.996 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.025 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.040 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.058 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.070 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.107 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.109 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.137 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.140 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.184 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 7.186 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 7.241 Executing VM operation: HandshakeAllThreads
|
||||
Event: 7.241 Executing VM operation: HandshakeAllThreads done
|
||||
|
||||
Events (20 events):
|
||||
Event: 3.788 Thread 0x000002c4863dc1f0 Thread added: 0x000002c4863dc1f0
|
||||
Event: 3.788 Thread 0x000002c4863d70f0 Thread added: 0x000002c4863d70f0
|
||||
Event: 3.788 Thread 0x000002c4863d66d0 Thread added: 0x000002c4863d66d0
|
||||
Event: 3.788 Thread 0x000002c4863d7600 Thread added: 0x000002c4863d7600
|
||||
Event: 3.788 Thread 0x000002c4863d6be0 Thread added: 0x000002c4863d6be0
|
||||
Event: 3.788 Thread 0x000002c4863d9e80 Thread added: 0x000002c4863d9e80
|
||||
Event: 3.788 Thread 0x000002c4863d8f50 Thread added: 0x000002c4863d8f50
|
||||
Event: 3.832 Thread 0x000002c4863dc700 Thread added: 0x000002c4863dc700
|
||||
Event: 4.127 Thread 0x000002c4863d5cb0 Thread added: 0x000002c4863d5cb0
|
||||
Event: 4.127 Thread 0x000002c4863da390 Thread added: 0x000002c4863da390
|
||||
Event: 4.433 Thread 0x000002c4863dcc10 Thread added: 0x000002c4863dcc10
|
||||
Event: 4.444 Thread 0x000002c4863d57a0 Thread added: 0x000002c4863d57a0
|
||||
Event: 4.448 Thread 0x000002c4863da8a0 Thread added: 0x000002c4863da8a0
|
||||
Event: 4.449 Thread 0x000002c4863dadb0 Thread added: 0x000002c4863dadb0
|
||||
Event: 4.910 Thread 0x000002c4863d8020 Thread added: 0x000002c4863d8020
|
||||
Event: 5.009 Thread 0x000002c4868434c0 Thread added: 0x000002c4868434c0
|
||||
Event: 5.857 Thread 0x000002c4850fd3f0 Thread exited: 0x000002c4850fd3f0
|
||||
Event: 5.857 Thread 0x000002c4868434c0 Thread exited: 0x000002c4868434c0
|
||||
Event: 6.783 Thread 0x000002c4868d2580 Thread added: 0x000002c4868d2580
|
||||
Event: 6.822 Thread 0x000002c484b91340 Thread added: 0x000002c484b91340
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff66a7a0000 - 0x00007ff66a7ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffae5cf0000 - 0x00007ffae5f07000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ffae3ef0000 - 0x00007ffae3fb4000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ffae3010000 - 0x00007ffae33bd000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ffae33c0000 - 0x00007ffae34d1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ffadbaa0000 - 0x00007ffadbab7000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ffadba80000 - 0x00007ffadba9b000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffae3bf0000 - 0x00007ffae3d9e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ffae34e0000 - 0x00007ffae3506000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ffae4db0000 - 0x00007ffae4dd9000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ffae3510000 - 0x00007ffae3629000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ffae3750000 - 0x00007ffae37ea000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ffacb330000 - 0x00007ffacb5c3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ffae3b40000 - 0x00007ffae3be7000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ffae3a30000 - 0x00007ffae3a61000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ffadfc30000 - 0x00007ffadfc3c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ffaacf90000 - 0x00007ffaad01d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ffa93ef0000 - 0x00007ffa94b5a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ffae5a30000 - 0x00007ffae5ae2000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffae5020000 - 0x00007ffae50c9000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ffae36a0000 - 0x00007ffae36c8000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ffae5b70000 - 0x00007ffae5c84000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffae5af0000 - 0x00007ffae5b61000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ffae1ea0000 - 0x00007ffae1eed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffadba00000 - 0x00007ffadba34000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ffada000000 - 0x00007ffada00a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ffae1e80000 - 0x00007ffae1e93000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ffae2130000 - 0x00007ffae2148000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffadd060000 - 0x00007ffadd06a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ffae1540000 - 0x00007ffae1772000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffae4610000 - 0x00007ffae499d000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffae4b60000 - 0x00007ffae4c37000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ffac0c10000 - 0x00007ffac0c42000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffae36d0000 - 0x00007ffae374b000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ffadc8a0000 - 0x00007ffadc8ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
0x00007ffacc130000 - 0x00007ffacc155000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
0x00007ffacea00000 - 0x00007ffacea18000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
0x00007ffae50d0000 - 0x00007ffae5938000 C:\WINDOWS\System32\SHELL32.dll
|
||||
0x00007ffae0b80000 - 0x00007ffae147e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||
0x00007ffae0a40000 - 0x00007ffae0b7f000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||
0x00007ffae3da0000 - 0x00007ffae3e99000 C:\WINDOWS\System32\SHCORE.dll
|
||||
0x00007ffae3ae0000 - 0x00007ffae3b3e000 C:\WINDOWS\System32\shlwapi.dll
|
||||
0x00007ffae2f40000 - 0x00007ffae2f61000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||
0x00007ffacbbf0000 - 0x00007ffacbc09000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
0x00007ffadbcf0000 - 0x00007ffadbe26000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
|
||||
0x00007ffae25a0000 - 0x00007ffae2609000 C:\WINDOWS\system32\mswsock.dll
|
||||
0x00007ffaca810000 - 0x00007ffaca826000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
0x00007ffadba70000 - 0x00007ffadba80000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
0x00007ffac2760000 - 0x00007ffac27a5000 C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
0x00007ffae3fc0000 - 0x00007ffae4165000 C:\WINDOWS\System32\ole32.dll
|
||||
0x00007ffae2800000 - 0x00007ffae281b000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ffae2090000 - 0x00007ffae20c5000 C:\WINDOWS\system32\rsaenh.dll
|
||||
0x00007ffae26a0000 - 0x00007ffae26c8000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||
0x00007ffae2820000 - 0x00007ffae282c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ffae1b40000 - 0x00007ffae1b6d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffae4aa0000 - 0x00007ffae4aa9000 C:\WINDOWS\System32\NSI.dll
|
||||
0x00007ffadbc50000 - 0x00007ffadbc69000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||
0x00007ffadba40000 - 0x00007ffadba5f000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||
0x00007ffae1bb0000 - 0x00007ffae1ca8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||
0x00007ffaa1d50000 - 0x00007ffaa1d95000 C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna17307153211066052976.dll
|
||||
0x00007ffae4c40000 - 0x00007ffae4c48000 C:\WINDOWS\System32\PSAPI.DLL
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: (cannot be retrieved)
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar
|
||||
java_command: c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_ss_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\ss_ws --pipe=\\.\pipe\lsp-cf8f1730839101c1f6f6438583bf4f4a-sock
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
uintx AdaptiveSizePolicyWeight = 90 {product} {command line}
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uintx GCTimeRatio = 4 {product} {command line}
|
||||
size_t InitialHeapSize = 104857600 {product} {command line}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MaxNewSize = 357564416 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 524288 {product} {ergonomic}
|
||||
size_t MinHeapSize = 104857600 {product} {command line}
|
||||
size_t NewSize = 34603008 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
size_t OldSize = 70254592 {product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
bool UseParallelGC = true {product} {command line}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=off uptime,level,tags
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Program Files\Git\cmd;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 2 days 0:29 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (3441M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 1M)
|
||||
current process WorkingSet (physical memory assigned to process): 212M, peak: 212M
|
||||
current process commit charge ("private bytes"): 293M, peak: 293M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
230
hs_err_pid21176.log
Normal file
230
hs_err_pid21176.log
Normal file
@ -0,0 +1,230 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (mmap) failed to map 4161536 bytes. Error detail: G1 virtual space
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (os_windows.cpp:3613), pid=21176, tid=24192
|
||||
#
|
||||
# JRE version: (17.0.12+7) (build )
|
||||
# Java VM: OpenJDK 64-Bit Server VM (17.0.12+7, mixed mode, emulated-client, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: -Xmx1024m -Dsts.lsp.client=vscode -Dsts.log.file=/dev/null -XX:TieredStopAtLevel=1 -Xlog:jni+resolve=off -Dspring.config.location=file:c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes\application.properties org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 4 12:04:15 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 0.022803 seconds (0d 0h 0m 0s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000002095dde2d60): JavaThread "Unknown thread" [_thread_in_vm, id=24192, stack(0x000000b856d00000,0x000000b856e00000)]
|
||||
|
||||
Stack: [0x000000b856d00000,0x000000b856e00000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0x67c6e9]
|
||||
V [jvm.dll+0x6711aa]
|
||||
V [jvm.dll+0x307f7b]
|
||||
V [jvm.dll+0x30f476]
|
||||
V [jvm.dll+0x35f653]
|
||||
V [jvm.dll+0x35f87f]
|
||||
V [jvm.dll+0x2def9c]
|
||||
V [jvm.dll+0x2dfef4]
|
||||
V [jvm.dll+0x808a4b]
|
||||
V [jvm.dll+0x36d3b1]
|
||||
V [jvm.dll+0x7e7425]
|
||||
V [jvm.dll+0x3f0edf]
|
||||
V [jvm.dll+0x3f2a31]
|
||||
C [jli.dll+0x528f]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x00007ff986bd6f18, length=0, elements={
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
|
||||
Other Threads:
|
||||
0x000002095de222e0 GCTaskThread "GC Thread#0" [stack: 0x000000b856e00000,0x000000b856f00000] [id=7096]
|
||||
0x000002095de2c150 ConcurrentGCThread "G1 Main Marker" [stack: 0x000000b856f00000,0x000000b857000000] [id=20672]
|
||||
0x000002095de2ca80 ConcurrentGCThread "G1 Conc#0" [stack: 0x000000b857000000,0x000000b857100000] [id=23436]
|
||||
|
||||
[error occurred during error reporting (printing all threads), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff98638f697]
|
||||
|
||||
VM state: not at safepoint (not fully initialized)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||
[0x000002095dde0a10] Heap_lock - owner thread: 0x000002095dde2d60
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) mapped at: [0x0000000000000000-0x0000000000000000-0x0000000000000000), size 0, SharedBaseAddress: 0x0000000800000000, ArchiveRelocationMode: 1.
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0x0
|
||||
|
||||
GC Precious Log:
|
||||
<Empty>
|
||||
|
||||
Heap:
|
||||
garbage-first heap total 0K, used 0K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
|
||||
[error occurred during error reporting (printing heap information), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff986778bf9]
|
||||
|
||||
GC Heap History (0 events):
|
||||
No events
|
||||
|
||||
Dll operation events (1 events):
|
||||
Event: 0.016 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
|
||||
Deoptimization events (0 events):
|
||||
No events
|
||||
|
||||
Classes loaded (0 events):
|
||||
No events
|
||||
|
||||
Classes unloaded (0 events):
|
||||
No events
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (0 events):
|
||||
No events
|
||||
|
||||
VM Operations (0 events):
|
||||
No events
|
||||
|
||||
Events (0 events):
|
||||
No events
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff6d4f60000 - 0x00007ff6d4f6e000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffa01890000 - 0x00007ffa01aa7000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ff9ff680000 - 0x00007ff9ff744000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ff9ff0d0000 - 0x00007ff9ff47d000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ff9febb0000 - 0x00007ff9fecc1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ff9ee860000 - 0x00007ff9ee877000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ff9ee8d0000 - 0x00007ff9ee8eb000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffa00960000 - 0x00007ffa00b0e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ff9fee90000 - 0x00007ff9feeb6000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ff9ffd00000 - 0x00007ff9ffd29000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ff9fecd0000 - 0x00007ff9fede9000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ff9feec0000 - 0x00007ff9fef5a000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ff9e0950000 - 0x00007ff9e0be3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ff9ffbb0000 - 0x00007ff9ffc57000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ff9ffc60000 - 0x00007ff9ffc91000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ff9e9970000 - 0x00007ff9e997c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ff9a2fa0000 - 0x00007ff9a302d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ff9860a0000 - 0x00007ff986d0a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ff9ffad0000 - 0x00007ff9ffb82000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffa00260000 - 0x00007ffa00309000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ff9fedf0000 - 0x00007ff9fee18000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ff9ff8b0000 - 0x00007ff9ff9c4000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffa001e0000 - 0x00007ffa00251000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ff9fda40000 - 0x00007ff9fda8d000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ff9f7130000 - 0x00007ff9f713a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ff9f7de0000 - 0x00007ff9f7e14000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ff9fda20000 - 0x00007ff9fda33000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ff9fdcd0000 - 0x00007ff9fdce8000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ff9e89b0000 - 0x00007ff9e89ba000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ff9fd0c0000 - 0x00007ff9fd2f2000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffa01470000 - 0x00007ffa017fd000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffa00b10000 - 0x00007ffa00be7000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ff9f6890000 - 0x00007ff9f68c2000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ff9ff480000 - 0x00007ff9ff4fb000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ff9b9ac0000 - 0x00007ff9b9ae5000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: -Xmx1024m -Dsts.lsp.client=vscode -Dsts.log.file=/dev/null -XX:TieredStopAtLevel=1 -Xlog:jni+resolve=off -Dspring.config.location=file:c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes\application.properties
|
||||
java_command: org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\annotations-24.1.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\antlr4-runtime-4.13.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-analysis-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-tree-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-util-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\caffeine-3.1.8.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\checker-qual-3.12.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\classgraph-4.8.149.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-codec-1.16.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-compress-1.26.2.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-io-2.16.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-java-1.56.0-SNAPSHOT.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-lang3-3.14.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-language-server-1.56.0-SNAPS
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uint ConcGCThreads = 3 {product} {ergonomic}
|
||||
uint G1ConcRefinementThreads = 10 {product} {ergonomic}
|
||||
size_t G1HeapRegionSize = 1048576 {product} {ergonomic}
|
||||
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
|
||||
size_t InitialHeapSize = 266338304 {product} {ergonomic}
|
||||
size_t MarkStackSize = 4194304 {product} {ergonomic}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic}
|
||||
size_t MinHeapSize = 8388608 {product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 0 {pd product} {ergonomic}
|
||||
bool ProfileInterpreter = false {pd product} {command line}
|
||||
uintx ProfiledCodeHeapSize = 0 {pd product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
intx TieredStopAtLevel = 1 {product} {command line}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseG1GC = true {product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=warning,jni+resolve=off uptime,level,tags (reconfigured)
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 14 days 22:29 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (853M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 6M)
|
||||
current process WorkingSet (physical memory assigned to process): 11M, peak: 11M
|
||||
current process commit charge ("private bytes"): 313M, peak: 317M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
786
hs_err_pid6728.log
Normal file
786
hs_err_pid6728.log
Normal file
@ -0,0 +1,786 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (malloc) failed to allocate 831456 bytes. Error detail: Chunk::new
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (arena.cpp:191), pid=6728, tid=8684
|
||||
#
|
||||
# JRE version: OpenJDK Runtime Environment Temurin-17.0.12+7 (17.0.12+7) (build 17.0.12+7)
|
||||
# Java VM: OpenJDK 64-Bit Server VM Temurin-17.0.12+7 (17.0.12+7, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java -Daether.dependencyCollector.impl=bf c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-0d22a0ee871557617e2803dc9c85448d-sock
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 11 13:59:00 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 32.934503 seconds (0d 0h 0m 32s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000002b82e8673d0): JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=8684, stack(0x000000b96d300000,0x000000b96d400000)]
|
||||
|
||||
|
||||
Current CompileTask:
|
||||
C2: 32934 8276 ! 4 org.eclipse.jdt.internal.core.search.indexing.BinaryIndexer::indexDocument (1157 bytes)
|
||||
|
||||
Stack: [0x000000b96d300000,0x000000b96d400000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0xac9d4]
|
||||
V [jvm.dll+0xad01c]
|
||||
V [jvm.dll+0x2af96f]
|
||||
V [jvm.dll+0x5868d7]
|
||||
V [jvm.dll+0x2231c2]
|
||||
V [jvm.dll+0x2235bf]
|
||||
V [jvm.dll+0x21c6e0]
|
||||
V [jvm.dll+0x219be1]
|
||||
V [jvm.dll+0x1a58bd]
|
||||
V [jvm.dll+0x229a2d]
|
||||
V [jvm.dll+0x227bdc]
|
||||
V [jvm.dll+0x7ec1f7]
|
||||
V [jvm.dll+0x7e65dc]
|
||||
V [jvm.dll+0x67e7f7]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x000002b82cfbb430, length=47, elements={
|
||||
0x000002b810d4a8f0, 0x000002b824bda040, 0x000002b824bdd2d0, 0x000002b829f768f0,
|
||||
0x000002b829f98ff0, 0x000002b829f9a8d0, 0x000002b829fb77c0, 0x000002b829fba3d0,
|
||||
0x000002b829fca8f0, 0x000002b829fd31f0, 0x000002b82a0543e0, 0x000002b82b47f610,
|
||||
0x000002b82bd53ae0, 0x000002b82bd53ff0, 0x000002b82bd55430, 0x000002b82bd54500,
|
||||
0x000002b82bd56360, 0x000002b82bd54a10, 0x000002b82bd55940, 0x000002b82bd535d0,
|
||||
0x000002b82c616690, 0x000002b82c6124c0, 0x000002b82c616180, 0x000002b82c611aa0,
|
||||
0x000002b82c615760, 0x000002b82c615c70, 0x000002b82c6170b0, 0x000002b82c6175c0,
|
||||
0x000002b82c616ba0, 0x000002b82c614830, 0x000002b82c617ad0, 0x000002b82c614d40,
|
||||
0x000002b82c611fb0, 0x000002b82c617fe0, 0x000002b82c613900, 0x000002b82c6129d0,
|
||||
0x000002b82c614320, 0x000002b82c6184f0, 0x000002b82c612ee0, 0x000002b82c6133f0,
|
||||
0x000002b82c615250, 0x000002b82e8673d0, 0x000002b82e86a3a0, 0x000002b82c618a00,
|
||||
0x000002b82bd56870, 0x000002b82f166b20, 0x000002b82f167030
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x000002b810d4a8f0 JavaThread "main" [_thread_blocked, id=3636, stack(0x000000b96b900000,0x000000b96ba00000)]
|
||||
0x000002b824bda040 JavaThread "Reference Handler" daemon [_thread_blocked, id=6048, stack(0x000000b96bc00000,0x000000b96bd00000)]
|
||||
0x000002b824bdd2d0 JavaThread "Finalizer" daemon [_thread_blocked, id=10844, stack(0x000000b96bd00000,0x000000b96be00000)]
|
||||
0x000002b829f768f0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=17220, stack(0x000000b96be00000,0x000000b96bf00000)]
|
||||
0x000002b829f98ff0 JavaThread "Attach Listener" daemon [_thread_blocked, id=2724, stack(0x000000b96bf00000,0x000000b96c000000)]
|
||||
0x000002b829f9a8d0 JavaThread "Service Thread" daemon [_thread_blocked, id=3196, stack(0x000000b96c000000,0x000000b96c100000)]
|
||||
0x000002b829fb77c0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=4484, stack(0x000000b96c100000,0x000000b96c200000)]
|
||||
0x000002b829fba3d0 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=18828, stack(0x000000b96c200000,0x000000b96c300000)]
|
||||
0x000002b829fca8f0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=19388, stack(0x000000b96c300000,0x000000b96c400000)]
|
||||
0x000002b829fd31f0 JavaThread "Sweeper thread" daemon [_thread_blocked, id=5528, stack(0x000000b96c400000,0x000000b96c500000)]
|
||||
0x000002b82a0543e0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=12856, stack(0x000000b96c500000,0x000000b96c600000)]
|
||||
0x000002b82b47f610 JavaThread "Notification Thread" daemon [_thread_blocked, id=22004, stack(0x000000b96c700000,0x000000b96c800000)]
|
||||
0x000002b82bd53ae0 JavaThread "Active Thread: Equinox Container: 49358c41-2497-4309-b110-f2966f6e59b8" [_thread_blocked, id=8888, stack(0x000000b96cf00000,0x000000b96d000000)]
|
||||
0x000002b82bd53ff0 JavaThread "Framework Event Dispatcher: Equinox Container: 49358c41-2497-4309-b110-f2966f6e59b8" daemon [_thread_blocked, id=18796, stack(0x000000b96d000000,0x000000b96d100000)]
|
||||
0x000002b82bd55430 JavaThread "Start Level: Equinox Container: 49358c41-2497-4309-b110-f2966f6e59b8" daemon [_thread_blocked, id=1944, stack(0x000000b96d100000,0x000000b96d200000)]
|
||||
0x000002b82bd54500 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=21332, stack(0x000000b96d400000,0x000000b96d500000)]
|
||||
0x000002b82bd56360 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=12008, stack(0x000000b96d700000,0x000000b96d800000)]
|
||||
0x000002b82bd54a10 JavaThread "Worker-JM" [_thread_blocked, id=2364, stack(0x000000b96d800000,0x000000b96d900000)]
|
||||
0x000002b82bd55940 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=14428, stack(0x000000b96d900000,0x000000b96da00000)]
|
||||
0x000002b82bd535d0 JavaThread "Worker-0" [_thread_blocked, id=22536, stack(0x000000b96da00000,0x000000b96db00000)]
|
||||
0x000002b82c616690 JavaThread "Worker-1" [_thread_blocked, id=18340, stack(0x000000b96db00000,0x000000b96dc00000)]
|
||||
0x000002b82c6124c0 JavaThread "Java indexing" daemon [_thread_in_Java, id=19280, stack(0x000000b96dd00000,0x000000b96de00000)]
|
||||
0x000002b82c616180 JavaThread "Worker-2: Java indexing... " [_thread_blocked, id=18912, stack(0x000000b96de00000,0x000000b96df00000)]
|
||||
0x000002b82c611aa0 JavaThread "Worker-3: Initialize Workspace" [_thread_blocked, id=18064, stack(0x000000b96df00000,0x000000b96e000000)]
|
||||
0x000002b82c615760 JavaThread "Thread-2" daemon [_thread_in_native, id=744, stack(0x000000b96e200000,0x000000b96e300000)]
|
||||
0x000002b82c615c70 JavaThread "Thread-3" daemon [_thread_in_native, id=23192, stack(0x000000b96e300000,0x000000b96e400000)]
|
||||
0x000002b82c6170b0 JavaThread "Thread-4" daemon [_thread_in_native, id=5276, stack(0x000000b96e400000,0x000000b96e500000)]
|
||||
0x000002b82c6175c0 JavaThread "Thread-5" daemon [_thread_in_native, id=17516, stack(0x000000b96e500000,0x000000b96e600000)]
|
||||
0x000002b82c616ba0 JavaThread "Thread-6" daemon [_thread_in_native, id=21612, stack(0x000000b96e600000,0x000000b96e700000)]
|
||||
0x000002b82c614830 JavaThread "Thread-7" daemon [_thread_in_native, id=3004, stack(0x000000b96e700000,0x000000b96e800000)]
|
||||
0x000002b82c617ad0 JavaThread "Thread-8" daemon [_thread_in_native, id=14112, stack(0x000000b96e800000,0x000000b96e900000)]
|
||||
0x000002b82c614d40 JavaThread "Thread-9" daemon [_thread_in_native, id=9240, stack(0x000000b96e900000,0x000000b96ea00000)]
|
||||
0x000002b82c611fb0 JavaThread "Thread-10" daemon [_thread_in_native, id=15092, stack(0x000000b96ea00000,0x000000b96eb00000)]
|
||||
0x000002b82c617fe0 JavaThread "Thread-11" daemon [_thread_in_native, id=17056, stack(0x000000b96eb00000,0x000000b96ec00000)]
|
||||
0x000002b82c613900 JavaThread "Thread-12" daemon [_thread_in_native, id=16188, stack(0x000000b96ec00000,0x000000b96ed00000)]
|
||||
0x000002b82c6129d0 JavaThread "Thread-13" daemon [_thread_in_native, id=23116, stack(0x000000b96ed00000,0x000000b96ee00000)]
|
||||
0x000002b82c614320 JavaThread "Thread-14" daemon [_thread_in_native, id=1048, stack(0x000000b96ee00000,0x000000b96ef00000)]
|
||||
0x000002b82c6184f0 JavaThread "pool-2-thread-1" [_thread_blocked, id=22660, stack(0x000000b96ef00000,0x000000b96f000000)]
|
||||
0x000002b82c612ee0 JavaThread "WorkspaceEventsHandler" [_thread_blocked, id=14492, stack(0x000000b96f000000,0x000000b96f100000)]
|
||||
0x000002b82c6133f0 JavaThread "pool-1-thread-1" [_thread_in_native, id=14260, stack(0x000000b96f100000,0x000000b96f200000)]
|
||||
0x000002b82c615250 JavaThread "pool-3-thread-1" [_thread_blocked, id=576, stack(0x000000b96c600000,0x000000b96c700000)]
|
||||
=>0x000002b82e8673d0 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=8684, stack(0x000000b96d300000,0x000000b96d400000)]
|
||||
0x000002b82e86a3a0 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=21564, stack(0x000000b96dc00000,0x000000b96dd00000)]
|
||||
0x000002b82c618a00 JavaThread "Worker-4: Initialize workspace" [_thread_blocked, id=12764, stack(0x000000b96f200000,0x000000b96f300000)]
|
||||
0x000002b82bd56870 JavaThread "Worker-5" [_thread_blocked, id=980, stack(0x000000b96f300000,0x000000b96f400000)]
|
||||
0x000002b82f166b20 JavaThread "Worker-6: Classpath Update Job" [_thread_in_native, id=10576, stack(0x000000b96f400000,0x000000b96f500000)]
|
||||
0x000002b82f167030 JavaThread "Worker-7" [_thread_blocked, id=3980, stack(0x000000b96f500000,0x000000b96f600000)]
|
||||
|
||||
Other Threads:
|
||||
0x000002b829f531c0 VMThread "VM Thread" [stack: 0x000000b96bb00000,0x000000b96bc00000] [id=22124]
|
||||
0x000002b82b47faf0 WatcherThread [stack: 0x000000b96c800000,0x000000b96c900000] [id=10428]
|
||||
0x000002b810d5f750 GCTaskThread "GC Thread#0" [stack: 0x000000b96ba00000,0x000000b96bb00000] [id=15348]
|
||||
0x000002b82b67b2b0 GCTaskThread "GC Thread#1" [stack: 0x000000b96c900000,0x000000b96ca00000] [id=1908]
|
||||
0x000002b82b4fac80 GCTaskThread "GC Thread#2" [stack: 0x000000b96ca00000,0x000000b96cb00000] [id=10400]
|
||||
0x000002b82b4faf40 GCTaskThread "GC Thread#3" [stack: 0x000000b96cb00000,0x000000b96cc00000] [id=9684]
|
||||
0x000002b82b4fb200 GCTaskThread "GC Thread#4" [stack: 0x000000b96cc00000,0x000000b96cd00000] [id=664]
|
||||
0x000002b82b4fb4c0 GCTaskThread "GC Thread#5" [stack: 0x000000b96cd00000,0x000000b96ce00000] [id=9576]
|
||||
0x000002b82b4fb780 GCTaskThread "GC Thread#6" [stack: 0x000000b96ce00000,0x000000b96cf00000] [id=10368]
|
||||
0x000002b82bf1f770 GCTaskThread "GC Thread#7" [stack: 0x000000b96d200000,0x000000b96d300000] [id=7036]
|
||||
0x000002b82bf32fb0 GCTaskThread "GC Thread#8" [stack: 0x000000b96d500000,0x000000b96d600000] [id=15144]
|
||||
0x000002b82c3fb610 GCTaskThread "GC Thread#9" [stack: 0x000000b96d600000,0x000000b96d700000] [id=23372]
|
||||
|
||||
Threads with active compile tasks:
|
||||
C2 CompilerThread0 32974 8224 4 org.eclipse.jdt.internal.core.JarPackageFragmentRoot::initRawPackageInfo (342 bytes)
|
||||
C2 CompilerThread1 32974 8276 ! 4 org.eclipse.jdt.internal.core.search.indexing.BinaryIndexer::indexDocument (1157 bytes)
|
||||
C2 CompilerThread2 32974 6811 4 org.eclipse.jdt.internal.core.search.indexing.AddJrtToIndex$JrtTraverser::visitFile (14 bytes)
|
||||
|
||||
VM state: not at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: None
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) not mapped
|
||||
Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000
|
||||
|
||||
GC Precious Log:
|
||||
CPUs: 12 total, 12 available
|
||||
Memory: 16251M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (32-bit)
|
||||
Alignments: Space 512K, Generation 512K, Heap 2M
|
||||
Heap Min Capacity: 100M
|
||||
Heap Initial Capacity: 100M
|
||||
Heap Max Capacity: 1G
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 10
|
||||
|
||||
Heap:
|
||||
PSYoungGen total 17920K, used 15714K [0x00000000eab00000, 0x00000000ec400000, 0x0000000100000000)
|
||||
eden space 9728K, 83% used [0x00000000eab00000,0x00000000eb2f0280,0x00000000eb480000)
|
||||
from space 8192K, 92% used [0x00000000eb480000,0x00000000ebbe8828,0x00000000ebc80000)
|
||||
to space 7680K, 0% used [0x00000000ebc80000,0x00000000ebc80000,0x00000000ec400000)
|
||||
ParOldGen total 699392K, used 110819K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6c38cf0,0x00000000eab00000)
|
||||
Metaspace used 60109K, committed 61184K, reserved 1114112K
|
||||
class space used 6475K, committed 6976K, reserved 1048576K
|
||||
|
||||
Card table byte_map: [0x000002b8106e0000,0x000002b8108f0000] _byte_map_base: 0x000002b8100e0000
|
||||
|
||||
Marking Bits: (ParMarkBitMap*) 0x00007ffa94a958b0
|
||||
Begin Bits: [0x000002b8229e0000, 0x000002b8239e0000)
|
||||
End Bits: [0x000002b8239e0000, 0x000002b8249e0000)
|
||||
|
||||
Polling page: 0x000002b80ea80000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 52.38 MB used.
|
||||
Class: 6.32 MB used.
|
||||
Both: 58.70 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 52.94 MB ( 83%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 6.81 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 59.75 MB ( 5%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 10.81 MB
|
||||
Class: 9.23 MB
|
||||
Both: 20.05 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 97.50 MB
|
||||
CDS: off
|
||||
MetaspaceReclaimPolicy: balanced
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- new_chunks_are_fully_committed: 0.
|
||||
- uncommit_free_chunks: 1.
|
||||
- use_allocation_guard: 0.
|
||||
- handle_deallocations: 1.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 6.
|
||||
num_arena_births: 618.
|
||||
num_arena_deaths: 14.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 956.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 20.
|
||||
num_chunks_taken_from_freelist: 2982.
|
||||
num_chunk_merges: 8.
|
||||
num_chunk_splits: 1841.
|
||||
num_chunks_enlarged: 1117.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=120000Kb used=4158Kb max_used=4764Kb free=115841Kb
|
||||
bounds [0x000002b81b4b0000, 0x000002b81b960000, 0x000002b8229e0000]
|
||||
CodeHeap 'profiled nmethods': size=120000Kb used=13283Kb max_used=15242Kb free=106716Kb
|
||||
bounds [0x000002b8139e0000, 0x000002b8148d0000, 0x000002b81af10000]
|
||||
CodeHeap 'non-nmethods': size=5760Kb used=1337Kb max_used=1432Kb free=4422Kb
|
||||
bounds [0x000002b81af10000, 0x000002b81b180000, 0x000002b81b4b0000]
|
||||
total_blobs=7442 nmethods=6761 adapters=593
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 32.906 Thread 0x000002b829fca8f0 8331 2 org.eclipse.jdt.internal.core.ClasspathEntry::getAccessRules (45 bytes)
|
||||
Event: 32.907 Thread 0x000002b829fca8f0 nmethod 8331 0x000002b8140ab690 code [0x000002b8140ab860, 0x000002b8140abc18]
|
||||
Event: 32.908 Thread 0x000002b829fca8f0 8332 2 org.eclipse.jdt.internal.launching.RuntimeClasspathEntry::setClasspathEntry (11 bytes)
|
||||
Event: 32.908 Thread 0x000002b829fca8f0 nmethod 8332 0x000002b813c8cf10 code [0x000002b813c8d0a0, 0x000002b813c8d1d8]
|
||||
Event: 32.912 Thread 0x000002b829fca8f0 8333 ! 2 org.eclipse.jdt.internal.core.JavaProject::resolveClasspath (1053 bytes)
|
||||
Event: 32.920 Thread 0x000002b829fca8f0 nmethod 8333 0x000002b81474ff90 code [0x000002b8147505c0, 0x000002b814752a18]
|
||||
Event: 32.920 Thread 0x000002b829fca8f0 8334 ! 2 org.eclipse.jdt.internal.core.JavaProject::findPackageFragmentRoots (71 bytes)
|
||||
Event: 32.920 Thread 0x000002b829fca8f0 nmethod 8334 0x000002b813a93410 code [0x000002b813a93600, 0x000002b813a93a98]
|
||||
Event: 32.920 Thread 0x000002b829fca8f0 8337 2 org.eclipse.jdt.internal.core.JavaProject::computePackageFragmentRoots (51 bytes)
|
||||
Event: 32.921 Thread 0x000002b829fca8f0 nmethod 8337 0x000002b813ec5a10 code [0x000002b813ec5c00, 0x000002b813ec6018]
|
||||
Event: 32.921 Thread 0x000002b829fca8f0 8338 2 org.eclipse.jdt.internal.compiler.util.ObjectVector::copyInto (7 bytes)
|
||||
Event: 32.921 Thread 0x000002b829fca8f0 nmethod 8338 0x000002b813cc6010 code [0x000002b813cc61a0, 0x000002b813cc62c8]
|
||||
Event: 32.921 Thread 0x000002b829fca8f0 8339 2 org.eclipse.jdt.internal.compiler.util.ObjectVector::copyInto (15 bytes)
|
||||
Event: 32.921 Thread 0x000002b829fca8f0 nmethod 8339 0x000002b813c05610 code [0x000002b813c057c0, 0x000002b813c05a48]
|
||||
Event: 32.921 Thread 0x000002b829fca8f0 8340 2 org.eclipse.jdt.internal.core.JavaProject::computePackageFragmentRoots (11 bytes)
|
||||
Event: 32.922 Thread 0x000002b829fca8f0 nmethod 8340 0x000002b813d54e10 code [0x000002b813d54fa0, 0x000002b813d550c8]
|
||||
Event: 32.922 Thread 0x000002b829fca8f0 8336 1 org.eclipse.jdt.internal.launching.RuntimeClasspathEntry::setType (6 bytes)
|
||||
Event: 32.922 Thread 0x000002b829fca8f0 nmethod 8336 0x000002b81b5cc190 code [0x000002b81b5cc320, 0x000002b81b5cc3f8]
|
||||
Event: 32.922 Thread 0x000002b829fca8f0 8335 1 java.util.stream.MatchOps$BooleanTerminalSink::getAndClearState (5 bytes)
|
||||
Event: 32.922 Thread 0x000002b829fca8f0 nmethod 8335 0x000002b81b5cbe10 code [0x000002b81b5cbfa0, 0x000002b81b5cc078]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 32.655 GC heap after
|
||||
{Heap after GC invocations=353 (full 233):
|
||||
PSYoungGen total 13312K, used 5091K [0x00000000eab00000, 0x00000000ebf80000, 0x0000000100000000)
|
||||
eden space 8192K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb300000)
|
||||
from space 5120K, 99% used [0x00000000eb300000,0x00000000eb7f8ef0,0x00000000eb800000)
|
||||
to space 6144K, 0% used [0x00000000eb980000,0x00000000eb980000,0x00000000ebf80000)
|
||||
ParOldGen total 699392K, used 103335K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 14% used [0x00000000c0000000,0x00000000c64e9ed8,0x00000000eab00000)
|
||||
Metaspace used 59546K, committed 60608K, reserved 1114112K
|
||||
class space used 6428K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.672 GC heap before
|
||||
{Heap before GC invocations=354 (full 233):
|
||||
PSYoungGen total 13312K, used 13283K [0x00000000eab00000, 0x00000000ebf80000, 0x0000000100000000)
|
||||
eden space 8192K, 100% used [0x00000000eab00000,0x00000000eb300000,0x00000000eb300000)
|
||||
from space 5120K, 99% used [0x00000000eb300000,0x00000000eb7f8ef0,0x00000000eb800000)
|
||||
to space 6144K, 0% used [0x00000000eb980000,0x00000000eb980000,0x00000000ebf80000)
|
||||
ParOldGen total 699392K, used 103335K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 14% used [0x00000000c0000000,0x00000000c64e9ed8,0x00000000eab00000)
|
||||
Metaspace used 59558K, committed 60672K, reserved 1114112K
|
||||
class space used 6432K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.676 GC heap after
|
||||
{Heap after GC invocations=354 (full 233):
|
||||
PSYoungGen total 14848K, used 5810K [0x00000000eab00000, 0x00000000ebf80000, 0x0000000100000000)
|
||||
eden space 8704K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb380000)
|
||||
from space 6144K, 94% used [0x00000000eb980000,0x00000000ebf2cba0,0x00000000ebf80000)
|
||||
to space 6144K, 0% used [0x00000000eb380000,0x00000000eb380000,0x00000000eb980000)
|
||||
ParOldGen total 699392K, used 103919K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 14% used [0x00000000c0000000,0x00000000c657bc48,0x00000000eab00000)
|
||||
Metaspace used 59558K, committed 60672K, reserved 1114112K
|
||||
class space used 6432K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.688 GC heap before
|
||||
{Heap before GC invocations=355 (full 233):
|
||||
PSYoungGen total 14848K, used 14514K [0x00000000eab00000, 0x00000000ebf80000, 0x0000000100000000)
|
||||
eden space 8704K, 100% used [0x00000000eab00000,0x00000000eb380000,0x00000000eb380000)
|
||||
from space 6144K, 94% used [0x00000000eb980000,0x00000000ebf2cba0,0x00000000ebf80000)
|
||||
to space 6144K, 0% used [0x00000000eb380000,0x00000000eb380000,0x00000000eb980000)
|
||||
ParOldGen total 699392K, used 103919K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 14% used [0x00000000c0000000,0x00000000c657bc48,0x00000000eab00000)
|
||||
Metaspace used 59580K, committed 60672K, reserved 1114112K
|
||||
class space used 6434K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.692 GC heap after
|
||||
{Heap after GC invocations=355 (full 233):
|
||||
PSYoungGen total 14848K, used 6113K [0x00000000eab00000, 0x00000000ec500000, 0x0000000100000000)
|
||||
eden space 8704K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb380000)
|
||||
from space 6144K, 99% used [0x00000000eb380000,0x00000000eb9784b8,0x00000000eb980000)
|
||||
to space 8704K, 0% used [0x00000000ebc80000,0x00000000ebc80000,0x00000000ec500000)
|
||||
ParOldGen total 699392K, used 105900K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c676b1b0,0x00000000eab00000)
|
||||
Metaspace used 59580K, committed 60672K, reserved 1114112K
|
||||
class space used 6434K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.707 GC heap before
|
||||
{Heap before GC invocations=356 (full 233):
|
||||
PSYoungGen total 14848K, used 14817K [0x00000000eab00000, 0x00000000ec500000, 0x0000000100000000)
|
||||
eden space 8704K, 100% used [0x00000000eab00000,0x00000000eb380000,0x00000000eb380000)
|
||||
from space 6144K, 99% used [0x00000000eb380000,0x00000000eb9784b8,0x00000000eb980000)
|
||||
to space 8704K, 0% used [0x00000000ebc80000,0x00000000ebc80000,0x00000000ec500000)
|
||||
ParOldGen total 699392K, used 105900K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c676b1d8,0x00000000eab00000)
|
||||
Metaspace used 59612K, committed 60672K, reserved 1114112K
|
||||
class space used 6437K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.711 GC heap after
|
||||
{Heap after GC invocations=356 (full 233):
|
||||
PSYoungGen total 14336K, used 4964K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 9216K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb400000)
|
||||
from space 5120K, 96% used [0x00000000ebc80000,0x00000000ec159048,0x00000000ec180000)
|
||||
to space 6144K, 0% used [0x00000000eb580000,0x00000000eb580000,0x00000000ebb80000)
|
||||
ParOldGen total 699392K, used 106439K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c67f1f08,0x00000000eab00000)
|
||||
Metaspace used 59612K, committed 60672K, reserved 1114112K
|
||||
class space used 6437K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.737 GC heap before
|
||||
{Heap before GC invocations=357 (full 233):
|
||||
PSYoungGen total 14336K, used 14180K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 9216K, 100% used [0x00000000eab00000,0x00000000eb400000,0x00000000eb400000)
|
||||
from space 5120K, 96% used [0x00000000ebc80000,0x00000000ec159048,0x00000000ec180000)
|
||||
to space 6144K, 0% used [0x00000000eb580000,0x00000000eb580000,0x00000000ebb80000)
|
||||
ParOldGen total 699392K, used 106456K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c67f6328,0x00000000eab00000)
|
||||
Metaspace used 59703K, committed 60800K, reserved 1114112K
|
||||
class space used 6443K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.742 GC heap after
|
||||
{Heap after GC invocations=357 (full 233):
|
||||
PSYoungGen total 15872K, used 6132K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 9728K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb480000)
|
||||
from space 6144K, 99% used [0x00000000eb580000,0x00000000ebb7d140,0x00000000ebb80000)
|
||||
to space 6144K, 0% used [0x00000000ebb80000,0x00000000ebb80000,0x00000000ec180000)
|
||||
ParOldGen total 699392K, used 106520K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6806328,0x00000000eab00000)
|
||||
Metaspace used 59703K, committed 60800K, reserved 1114112K
|
||||
class space used 6443K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.757 GC heap before
|
||||
{Heap before GC invocations=358 (full 233):
|
||||
PSYoungGen total 15872K, used 15860K [0x00000000eab00000, 0x00000000ec180000, 0x0000000100000000)
|
||||
eden space 9728K, 100% used [0x00000000eab00000,0x00000000eb480000,0x00000000eb480000)
|
||||
from space 6144K, 99% used [0x00000000eb580000,0x00000000ebb7d140,0x00000000ebb80000)
|
||||
to space 6144K, 0% used [0x00000000ebb80000,0x00000000ebb80000,0x00000000ec180000)
|
||||
ParOldGen total 699392K, used 106520K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6806328,0x00000000eab00000)
|
||||
Metaspace used 59737K, committed 60800K, reserved 1114112K
|
||||
class space used 6446K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.761 GC heap after
|
||||
{Heap after GC invocations=358 (full 233):
|
||||
PSYoungGen total 15360K, used 4718K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000)
|
||||
eden space 10240K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb500000)
|
||||
from space 5120K, 92% used [0x00000000ebb80000,0x00000000ec01bb28,0x00000000ec080000)
|
||||
to space 5632K, 0% used [0x00000000eb580000,0x00000000eb580000,0x00000000ebb00000)
|
||||
ParOldGen total 699392K, used 108686K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6a23870,0x00000000eab00000)
|
||||
Metaspace used 59737K, committed 60800K, reserved 1114112K
|
||||
class space used 6446K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.774 GC heap before
|
||||
{Heap before GC invocations=359 (full 233):
|
||||
PSYoungGen total 15360K, used 14958K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000)
|
||||
eden space 10240K, 100% used [0x00000000eab00000,0x00000000eb500000,0x00000000eb500000)
|
||||
from space 5120K, 92% used [0x00000000ebb80000,0x00000000ec01bb28,0x00000000ec080000)
|
||||
to space 5632K, 0% used [0x00000000eb580000,0x00000000eb580000,0x00000000ebb00000)
|
||||
ParOldGen total 699392K, used 108686K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6a23870,0x00000000eab00000)
|
||||
Metaspace used 59776K, committed 60864K, reserved 1114112K
|
||||
class space used 6448K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.777 GC heap after
|
||||
{Heap after GC invocations=359 (full 233):
|
||||
PSYoungGen total 16384K, used 5416K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000)
|
||||
eden space 10752K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb580000)
|
||||
from space 5632K, 96% used [0x00000000eb580000,0x00000000ebaca3d0,0x00000000ebb00000)
|
||||
to space 5632K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ec080000)
|
||||
ParOldGen total 699392K, used 108686K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6a23870,0x00000000eab00000)
|
||||
Metaspace used 59776K, committed 60864K, reserved 1114112K
|
||||
class space used 6448K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.796 GC heap before
|
||||
{Heap before GC invocations=360 (full 233):
|
||||
PSYoungGen total 16384K, used 16168K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000)
|
||||
eden space 10752K, 100% used [0x00000000eab00000,0x00000000eb580000,0x00000000eb580000)
|
||||
from space 5632K, 96% used [0x00000000eb580000,0x00000000ebaca3d0,0x00000000ebb00000)
|
||||
to space 5632K, 0% used [0x00000000ebb00000,0x00000000ebb00000,0x00000000ec080000)
|
||||
ParOldGen total 699392K, used 108686K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6a23870,0x00000000eab00000)
|
||||
Metaspace used 59843K, committed 60928K, reserved 1114112K
|
||||
class space used 6455K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.801 GC heap after
|
||||
{Heap after GC invocations=360 (full 233):
|
||||
PSYoungGen total 15872K, used 5630K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 10240K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb500000)
|
||||
from space 5632K, 99% used [0x00000000ebb00000,0x00000000ec07f9b0,0x00000000ec080000)
|
||||
to space 6144K, 0% used [0x00000000eb500000,0x00000000eb500000,0x00000000ebb00000)
|
||||
ParOldGen total 699392K, used 108902K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6a59a40,0x00000000eab00000)
|
||||
Metaspace used 59843K, committed 60928K, reserved 1114112K
|
||||
class space used 6455K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.829 GC heap before
|
||||
{Heap before GC invocations=361 (full 233):
|
||||
PSYoungGen total 15872K, used 15870K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000)
|
||||
eden space 10240K, 100% used [0x00000000eab00000,0x00000000eb500000,0x00000000eb500000)
|
||||
from space 5632K, 99% used [0x00000000ebb00000,0x00000000ec07f9b0,0x00000000ec080000)
|
||||
to space 6144K, 0% used [0x00000000eb500000,0x00000000eb500000,0x00000000ebb00000)
|
||||
ParOldGen total 699392K, used 108902K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6a59a40,0x00000000eab00000)
|
||||
Metaspace used 59883K, committed 60928K, reserved 1114112K
|
||||
class space used 6459K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.834 GC heap after
|
||||
{Heap after GC invocations=361 (full 233):
|
||||
PSYoungGen total 16384K, used 6136K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 10240K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb500000)
|
||||
from space 6144K, 99% used [0x00000000eb500000,0x00000000ebafe0b8,0x00000000ebb00000)
|
||||
to space 7168K, 0% used [0x00000000ebc80000,0x00000000ebc80000,0x00000000ec380000)
|
||||
ParOldGen total 699392K, used 109432K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6ade2f8,0x00000000eab00000)
|
||||
Metaspace used 59883K, committed 60928K, reserved 1114112K
|
||||
class space used 6459K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.876 GC heap before
|
||||
{Heap before GC invocations=362 (full 233):
|
||||
PSYoungGen total 16384K, used 16376K [0x00000000eab00000, 0x00000000ec380000, 0x0000000100000000)
|
||||
eden space 10240K, 100% used [0x00000000eab00000,0x00000000eb500000,0x00000000eb500000)
|
||||
from space 6144K, 99% used [0x00000000eb500000,0x00000000ebafe0b8,0x00000000ebb00000)
|
||||
to space 7168K, 0% used [0x00000000ebc80000,0x00000000ebc80000,0x00000000ec380000)
|
||||
ParOldGen total 699392K, used 109432K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6ade2f8,0x00000000eab00000)
|
||||
Metaspace used 59920K, committed 60928K, reserved 1114112K
|
||||
class space used 6463K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.882 GC heap after
|
||||
{Heap after GC invocations=362 (full 233):
|
||||
PSYoungGen total 16896K, used 7138K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 9728K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eb480000)
|
||||
from space 7168K, 99% used [0x00000000ebc80000,0x00000000ec378808,0x00000000ec380000)
|
||||
to space 8192K, 0% used [0x00000000eb480000,0x00000000eb480000,0x00000000ebc80000)
|
||||
ParOldGen total 699392K, used 109853K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6b47528,0x00000000eab00000)
|
||||
Metaspace used 59920K, committed 60928K, reserved 1114112K
|
||||
class space used 6463K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
Event: 32.926 GC heap before
|
||||
{Heap before GC invocations=363 (full 233):
|
||||
PSYoungGen total 16896K, used 16866K [0x00000000eab00000, 0x00000000ec580000, 0x0000000100000000)
|
||||
eden space 9728K, 100% used [0x00000000eab00000,0x00000000eb480000,0x00000000eb480000)
|
||||
from space 7168K, 99% used [0x00000000ebc80000,0x00000000ec378808,0x00000000ec380000)
|
||||
to space 8192K, 0% used [0x00000000eb480000,0x00000000eb480000,0x00000000ebc80000)
|
||||
ParOldGen total 699392K, used 109853K [0x00000000c0000000, 0x00000000eab00000, 0x00000000eab00000)
|
||||
object space 699392K, 15% used [0x00000000c0000000,0x00000000c6b47528,0x00000000eab00000)
|
||||
Metaspace used 59987K, committed 60992K, reserved 1114112K
|
||||
class space used 6471K, committed 6912K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (10 events):
|
||||
Event: 0.018 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
Event: 0.156 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.163 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
Event: 0.175 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
Event: 0.178 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
Event: 0.185 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.198 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
Event: 0.248 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
Event: 1.614 Loaded shared library C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
Event: 2.965 Loaded shared library C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna635993904903588365.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 32.696 Thread 0x000002b82c6124c0 DEOPT PACKING pc=0x000002b8145bc346 sp=0x000000b96ddfe570
|
||||
Event: 32.696 Thread 0x000002b82c6124c0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96ddfda08 mode 0
|
||||
Event: 32.696 Thread 0x000002b82c6133f0 DEOPT PACKING pc=0x000002b81414738c sp=0x000000b96f1fc110
|
||||
Event: 32.696 Thread 0x000002b82c6133f0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96f1fb5c0 mode 0
|
||||
Event: 32.703 Thread 0x000002b82c6133f0 DEOPT PACKING pc=0x000002b814147345 sp=0x000000b96f1fc110
|
||||
Event: 32.703 Thread 0x000002b82c6133f0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96f1fb5c0 mode 0
|
||||
Event: 32.711 Thread 0x000002b82c6133f0 DEOPT PACKING pc=0x000002b814147345 sp=0x000000b96f1fc110
|
||||
Event: 32.711 Thread 0x000002b82c6133f0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96f1fb5c0 mode 0
|
||||
Event: 32.729 Thread 0x000002b82c6133f0 DEOPT PACKING pc=0x000002b814147345 sp=0x000000b96f1fc110
|
||||
Event: 32.729 Thread 0x000002b82c6133f0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96f1fb5c0 mode 0
|
||||
Event: 32.734 Thread 0x000002b82c6124c0 DEOPT PACKING pc=0x000002b8145c114e sp=0x000000b96ddfe350
|
||||
Event: 32.734 Thread 0x000002b82c6124c0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96ddfd7c8 mode 0
|
||||
Event: 32.761 Thread 0x000002b82c6124c0 DEOPT PACKING pc=0x000002b8145bc346 sp=0x000000b96ddfe350
|
||||
Event: 32.761 Thread 0x000002b82c6124c0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96ddfd7d8 mode 0
|
||||
Event: 32.814 Thread 0x000002b82c6124c0 DEOPT PACKING pc=0x000002b8145c114e sp=0x000000b96ddfe350
|
||||
Event: 32.814 Thread 0x000002b82c6124c0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96ddfd7c8 mode 0
|
||||
Event: 32.856 Thread 0x000002b82c6124c0 DEOPT PACKING pc=0x000002b8146c4bfd sp=0x000000b96ddfe470
|
||||
Event: 32.856 Thread 0x000002b82c6124c0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96ddfd888 mode 0
|
||||
Event: 32.856 Thread 0x000002b82c6124c0 DEOPT PACKING pc=0x000002b8146df222 sp=0x000000b96ddfe430
|
||||
Event: 32.856 Thread 0x000002b82c6124c0 DEOPT UNPACKING pc=0x000002b81af66e43 sp=0x000000b96ddfd880 mode 0
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 21.326 Loading class java/util/Collections$SynchronizedRandomAccessList
|
||||
Event: 21.326 Loading class java/util/Collections$SynchronizedList
|
||||
Event: 21.327 Loading class java/util/Collections$SynchronizedList done
|
||||
Event: 21.327 Loading class java/util/Collections$SynchronizedRandomAccessList done
|
||||
Event: 21.494 Loading class java/nio/charset/CharacterCodingException
|
||||
Event: 21.494 Loading class java/nio/charset/CharacterCodingException done
|
||||
Event: 21.494 Loading class java/io/SequenceInputStream
|
||||
Event: 21.495 Loading class java/io/SequenceInputStream done
|
||||
Event: 21.537 Loading class java/util/Hashtable$KeySet
|
||||
Event: 21.537 Loading class java/util/Hashtable$KeySet done
|
||||
Event: 28.540 Loading class java/util/Vector$1
|
||||
Event: 28.773 Loading class java/util/Vector$1 done
|
||||
Event: 32.328 Loading class sun/nio/cs/ISO_8859_1$Encoder
|
||||
Event: 32.330 Loading class sun/nio/cs/ISO_8859_1$Encoder done
|
||||
Event: 32.330 Loading class sun/nio/cs/Surrogate$Parser
|
||||
Event: 32.330 Loading class sun/nio/cs/Surrogate$Parser done
|
||||
Event: 32.330 Loading class sun/nio/cs/Surrogate
|
||||
Event: 32.330 Loading class sun/nio/cs/Surrogate done
|
||||
Event: 32.901 Loading class java/util/regex/Pattern$Caret
|
||||
Event: 32.901 Loading class java/util/regex/Pattern$Caret done
|
||||
|
||||
Classes unloaded (7 events):
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x000000010024a400 'java/lang/invoke/LambdaForm$MH+0x000000010024a400'
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x000000010024a000 'java/lang/invoke/LambdaForm$MH+0x000000010024a000'
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x0000000100249c00 'java/lang/invoke/LambdaForm$MH+0x0000000100249c00'
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x0000000100249800 'java/lang/invoke/LambdaForm$MH+0x0000000100249800'
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x0000000100249400 'java/lang/invoke/LambdaForm$BMH+0x0000000100249400'
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x0000000100249000 'java/lang/invoke/LambdaForm$DMH+0x0000000100249000'
|
||||
Event: 2.716 Thread 0x000002b829f531c0 Unloading class 0x0000000100242400 'java/lang/invoke/LambdaForm$DMH+0x0000000100242400'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 21.469 Thread 0x000002b82c616690 Exception <a 'java/io/FileNotFoundException'{0x00000000eafc7f00}> (0x00000000eafc7f00)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.471 Thread 0x000002b82c616690 Exception <a 'java/io/FileNotFoundException'{0x00000000eab06930}> (0x00000000eab06930)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.471 Thread 0x000002b82c616690 Exception <a 'java/io/FileNotFoundException'{0x00000000eab07ae0}> (0x00000000eab07ae0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.477 Thread 0x000002b82c616690 Exception <a 'java/lang/NoSuchMethodError'{0x00000000eacfecf0}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, java.lang.Object, int, java.lang.Object)'> (0x00000000eacfecf0)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 21.478 Thread 0x000002b82c616690 Exception <a 'java/lang/NoSuchMethodError'{0x00000000ead3ef10}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, int)'> (0x00000000ead3ef10)
|
||||
thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]
|
||||
Event: 21.548 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eab119a8}> (0x00000000eab119a8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.548 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eab120a8}> (0x00000000eab120a8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.552 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eab12d88}> (0x00000000eab12d88)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.552 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eab13468}> (0x00000000eab13468)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.556 Thread 0x000002b82f166b20 Exception <a 'java/io/FileNotFoundException'{0x00000000eab99f00}> (0x00000000eab99f00)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.556 Thread 0x000002b82f166b20 Exception <a 'java/io/FileNotFoundException'{0x00000000eab9b0e0}> (0x00000000eab9b0e0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.576 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eaca3e48}> (0x00000000eaca3e48)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 21.576 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eaca4528}> (0x00000000eaca4528)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 32.668 Thread 0x000002b82c6124c0 Implicit null exception at 0x000002b81b6eb444 to 0x000002b81b6f0dfc
|
||||
Event: 32.899 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eaf50ad0}> (0x00000000eaf50ad0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 32.899 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eaf511b0}> (0x00000000eaf511b0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 32.900 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eaf51e90}> (0x00000000eaf51e90)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 32.901 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eaf52570}> (0x00000000eaf52570)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 32.918 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb35fdb0}> (0x00000000eb35fdb0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 32.918 Thread 0x000002b82f166b20 Exception <a 'sun/nio/fs/WindowsException'{0x00000000eb360490}> (0x00000000eb360490)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 32.676 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.688 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.692 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.707 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.707 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.707 Executing VM operation: ParallelGCSystemGC
|
||||
Event: 32.711 Executing VM operation: ParallelGCSystemGC done
|
||||
Event: 32.737 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.742 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.756 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.761 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.774 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.778 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.795 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.801 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.829 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.835 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.876 Executing VM operation: ParallelGCFailedAllocation
|
||||
Event: 32.882 Executing VM operation: ParallelGCFailedAllocation done
|
||||
Event: 32.926 Executing VM operation: ParallelGCFailedAllocation
|
||||
|
||||
Events (20 events):
|
||||
Event: 32.644 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814851e90
|
||||
Event: 32.644 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b81486cc10
|
||||
Event: 32.644 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b81486e690
|
||||
Event: 32.644 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b81486f610
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814877410
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814877b90
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814878010
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814879610
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b81487ab10
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b81487b290
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b81487b710
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814881610
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814887910
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814887e90
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814888210
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814888d90
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814889290
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814898390
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b814898c90
|
||||
Event: 32.645 Thread 0x000002b829fd31f0 flushing nmethod 0x000002b8148a6890
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff66a7a0000 - 0x00007ff66a7ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffae5cf0000 - 0x00007ffae5f07000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ffae3ef0000 - 0x00007ffae3fb4000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ffae3010000 - 0x00007ffae33bd000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ffae33c0000 - 0x00007ffae34d1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ffadba80000 - 0x00007ffadba9b000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffadbaa0000 - 0x00007ffadbab7000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ffae3bf0000 - 0x00007ffae3d9e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ffae34e0000 - 0x00007ffae3506000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ffae4db0000 - 0x00007ffae4dd9000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ffae3510000 - 0x00007ffae3629000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ffae3750000 - 0x00007ffae37ea000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ffacb330000 - 0x00007ffacb5c3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ffae3b40000 - 0x00007ffae3be7000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ffae3a30000 - 0x00007ffae3a61000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ffadfc30000 - 0x00007ffadfc3c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ffaacf90000 - 0x00007ffaad01d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ffa93ef0000 - 0x00007ffa94b5a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ffae5a30000 - 0x00007ffae5ae2000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffae5020000 - 0x00007ffae50c9000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ffae36a0000 - 0x00007ffae36c8000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ffae5b70000 - 0x00007ffae5c84000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffae5af0000 - 0x00007ffae5b61000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ffae1ea0000 - 0x00007ffae1eed000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffadba00000 - 0x00007ffadba34000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ffada000000 - 0x00007ffada00a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ffae1e80000 - 0x00007ffae1e93000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ffae2130000 - 0x00007ffae2148000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffadd060000 - 0x00007ffadd06a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ffae1540000 - 0x00007ffae1772000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffae4610000 - 0x00007ffae499d000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffae4b60000 - 0x00007ffae4c37000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ffac0c10000 - 0x00007ffac0c42000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffae36d0000 - 0x00007ffae374b000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ffadc8a0000 - 0x00007ffadc8ae000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\instrument.dll
|
||||
0x00007ffacc130000 - 0x00007ffacc155000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
0x00007ffacea00000 - 0x00007ffacea18000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
0x00007ffae50d0000 - 0x00007ffae5938000 C:\WINDOWS\System32\SHELL32.dll
|
||||
0x00007ffae0b80000 - 0x00007ffae147e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||
0x00007ffae0a40000 - 0x00007ffae0b7f000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||
0x00007ffae3da0000 - 0x00007ffae3e99000 C:\WINDOWS\System32\SHCORE.dll
|
||||
0x00007ffae3ae0000 - 0x00007ffae3b3e000 C:\WINDOWS\System32\shlwapi.dll
|
||||
0x00007ffae2f40000 - 0x00007ffae2f61000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||
0x00007ffacbbf0000 - 0x00007ffacbc09000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
0x00007ffadbcf0000 - 0x00007ffadbe26000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
|
||||
0x00007ffae25a0000 - 0x00007ffae2609000 C:\WINDOWS\system32\mswsock.dll
|
||||
0x00007ffaca810000 - 0x00007ffaca826000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
0x00007ffadba70000 - 0x00007ffadba80000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
0x00007ffaadb20000 - 0x00007ffaadb65000 C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll
|
||||
0x00007ffae3fc0000 - 0x00007ffae4165000 C:\WINDOWS\System32\ole32.dll
|
||||
0x00007ffae2800000 - 0x00007ffae281b000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ffae2090000 - 0x00007ffae20c5000 C:\WINDOWS\system32\rsaenh.dll
|
||||
0x00007ffae26a0000 - 0x00007ffae26c8000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||
0x00007ffae2820000 - 0x00007ffae282c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ffae1b40000 - 0x00007ffae1b6d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffae4aa0000 - 0x00007ffae4aa9000 C:\WINDOWS\System32\NSI.dll
|
||||
0x00007ffadbc50000 - 0x00007ffadbc69000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||
0x00007ffadba40000 - 0x00007ffadba5f000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||
0x00007ffae1bb0000 - 0x00007ffae1ca8000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||
0x00007ffaacf40000 - 0x00007ffaacf85000 C:\Users\dy20240402\AppData\Local\Temp\jna-242497435\jna635993904903588365.dll
|
||||
0x00007ffae4c40000 - 0x00007ffae4c48000 C:\WINDOWS\System32\PSAPI.DLL
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server;C:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106;C:\Users\dy20240402\AppData\Local\Temp\jna-242497435
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\lombok\lombok-1.18.33.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java -Daether.dependencyCollector.impl=bf
|
||||
java_command: c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\dy20240402\AppData\Roaming\Code\User\globalStorage\redhat.java\1.34.0\config_win -data c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-0d22a0ee871557617e2803dc9c85448d-sock
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
uintx AdaptiveSizePolicyWeight = 90 {product} {command line}
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uintx GCTimeRatio = 4 {product} {command line}
|
||||
bool HeapDumpOnOutOfMemoryError = true {manageable} {command line}
|
||||
ccstr HeapDumpPath = c:\Users\dy20240402\AppData\Roaming\Code\User\workspaceStorage\b6d5cbaef68a8efeaf22d0b9e113f687\redhat.java {manageable} {command line}
|
||||
size_t InitialHeapSize = 104857600 {product} {command line}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MaxNewSize = 357564416 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 524288 {product} {ergonomic}
|
||||
size_t MinHeapSize = 104857600 {product} {command line}
|
||||
size_t NewSize = 34603008 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
size_t OldSize = 70254592 {product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
bool UseParallelGC = true {product} {command line}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=off uptime,level,tags
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Program Files\Git\cmd;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 2 days 0:29 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (3979M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 27M)
|
||||
current process WorkingSet (physical memory assigned to process): 391M, peak: 391M
|
||||
current process commit charge ("private bytes"): 967M, peak: 972M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
826
hs_err_pid8444.log
Normal file
826
hs_err_pid8444.log
Normal file
@ -0,0 +1,826 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (malloc) failed to allocate 2097152 bytes. Error detail: AllocateHeap
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 4GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (allocation.cpp:44), pid=8444, tid=2592
|
||||
#
|
||||
# JRE version: OpenJDK Runtime Environment Temurin-17.0.12+7 (17.0.12+7) (build 17.0.12+7)
|
||||
# Java VM: OpenJDK 64-Bit Server VM Temurin-17.0.12+7 (17.0.12+7, mixed mode, emulated-client, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: -Xmx1024m -Dsts.lsp.client=vscode -Dsts.log.file=/dev/null -XX:TieredStopAtLevel=1 -Xlog:jni+resolve=off -Dspring.config.location=file:c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes\application.properties org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp
|
||||
|
||||
Host: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz, 12 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
Time: Wed Sep 4 12:04:14 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3958) elapsed time: 11194.673265 seconds (0d 3h 6m 34s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000001e81e7d9350): VMThread "VM Thread" [stack: 0x00000012be500000,0x00000012be600000] [id=2592]
|
||||
|
||||
Stack: [0x00000012be500000,0x00000012be600000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x67f929]
|
||||
V [jvm.dll+0x8371ba]
|
||||
V [jvm.dll+0x838c7e]
|
||||
V [jvm.dll+0x8392e3]
|
||||
V [jvm.dll+0x24834f]
|
||||
V [jvm.dll+0xa70d3]
|
||||
V [jvm.dll+0x2f9101]
|
||||
V [jvm.dll+0x2f4d00]
|
||||
V [jvm.dll+0x2dd82f]
|
||||
V [jvm.dll+0x3201f7]
|
||||
V [jvm.dll+0x83d7dd]
|
||||
V [jvm.dll+0x83e522]
|
||||
V [jvm.dll+0x83ea4f]
|
||||
V [jvm.dll+0x83ee34]
|
||||
V [jvm.dll+0x83ef00]
|
||||
V [jvm.dll+0x7e65dc]
|
||||
V [jvm.dll+0x67e7f7]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1257d]
|
||||
C [ntdll.dll+0x5af28]
|
||||
|
||||
VM_Operation (0x00000012c00fecd0): G1CollectFull, mode: safepoint, requested by thread 0x000001e823cc2130
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x000001e8237d87e0, length=32, elements={
|
||||
0x000001e81e80bfe0, 0x000001e81e80cd70, 0x000001e81e82b140, 0x000001e81e840b70,
|
||||
0x000001e81e860110, 0x000001e81e862600, 0x000001e81e864ee0, 0x000001e81e868cf0,
|
||||
0x000001e81ea74700, 0x000001e81ea7f450, 0x000001e8245fc020, 0x000001e823cc2130,
|
||||
0x000001e8246fc030, 0x000001e811552190, 0x000001e824106d90, 0x000001e82477f8a0,
|
||||
0x000001e82477df70, 0x000001e82477b1e0, 0x000001e82477bc00, 0x000001e82477c110,
|
||||
0x000001e82477c620, 0x000001e82477cb30, 0x000001e82477d040, 0x000001e824b6cc10,
|
||||
0x000001e824b68530, 0x000001e824b6d120, 0x000001e824b6c700, 0x000001e824b6e050,
|
||||
0x000001e824b6f490, 0x000001e824b68020, 0x000001e824b69460, 0x000001e824b6d630
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x000001e81e80bfe0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2796, stack(0x00000012be600000,0x00000012be700000)]
|
||||
0x000001e81e80cd70 JavaThread "Finalizer" daemon [_thread_blocked, id=23680, stack(0x00000012be700000,0x00000012be800000)]
|
||||
0x000001e81e82b140 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=23384, stack(0x00000012be800000,0x00000012be900000)]
|
||||
0x000001e81e840b70 JavaThread "Attach Listener" daemon [_thread_blocked, id=15012, stack(0x00000012be900000,0x00000012bea00000)]
|
||||
0x000001e81e860110 JavaThread "Service Thread" daemon [_thread_blocked, id=24068, stack(0x00000012bea00000,0x00000012beb00000)]
|
||||
0x000001e81e862600 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=21300, stack(0x00000012beb00000,0x00000012bec00000)]
|
||||
0x000001e81e864ee0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=5876, stack(0x00000012bec00000,0x00000012bed00000)]
|
||||
0x000001e81e868cf0 JavaThread "Sweeper thread" daemon [_thread_blocked, id=7816, stack(0x00000012bed00000,0x00000012bee00000)]
|
||||
0x000001e81ea74700 JavaThread "Notification Thread" daemon [_thread_blocked, id=9568, stack(0x00000012bf000000,0x00000012bf100000)]
|
||||
0x000001e81ea7f450 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=7876, stack(0x00000012bf200000,0x00000012bf300000)]
|
||||
0x000001e8245fc020 JavaThread "boundedElastic-evictor-1" daemon [_thread_blocked, id=15872, stack(0x00000012bf900000,0x00000012bfa00000)]
|
||||
0x000001e823cc2130 JavaThread "pool-13-thread-1" [_thread_blocked, id=15208, stack(0x00000012c0000000,0x00000012c0100000)]
|
||||
0x000001e8246fc030 JavaThread "LanguageServerApp-lifecycle" [_thread_blocked, id=20168, stack(0x00000012c0100000,0x00000012c0200000)]
|
||||
0x000001e811552190 JavaThread "DestroyJavaVM" [_thread_blocked, id=23344, stack(0x00000012bdf00000,0x00000012be000000)]
|
||||
0x000001e824106d90 JavaThread "pool-14-thread-1" [_thread_in_native, id=24832, stack(0x00000012c0200000,0x00000012c0300000)]
|
||||
0x000001e82477f8a0 JavaThread "Simple-Language-Server main thread" daemon [_thread_blocked, id=9300, stack(0x00000012c0300000,0x00000012c0400000)]
|
||||
0x000001e82477df70 JavaThread "pool-8-thread-1" [_thread_blocked, id=13804, stack(0x00000012c0700000,0x00000012c0800000)]
|
||||
0x000001e82477b1e0 JavaThread "parallel-1" daemon [_thread_blocked, id=23320, stack(0x00000012c0800000,0x00000012c0900000)]
|
||||
0x000001e82477bc00 JavaThread "parallel-2" daemon [_thread_blocked, id=23160, stack(0x00000012c0900000,0x00000012c0a00000)]
|
||||
0x000001e82477c110 JavaThread "pool-6-thread-1" [_thread_blocked, id=18024, stack(0x00000012c0a00000,0x00000012c0b00000)]
|
||||
0x000001e82477c620 JavaThread "parallel-3" daemon [_thread_blocked, id=7772, stack(0x00000012c0b00000,0x00000012c0c00000)]
|
||||
0x000001e82477cb30 JavaThread "parallel-4" daemon [_thread_blocked, id=10576, stack(0x00000012c0c00000,0x00000012c0d00000)]
|
||||
0x000001e82477d040 JavaThread "parallel-5" daemon [_thread_blocked, id=17380, stack(0x00000012c0d00000,0x00000012c0e00000)]
|
||||
0x000001e824b6cc10 JavaThread "parallel-6" daemon [_thread_blocked, id=23888, stack(0x00000012c1200000,0x00000012c1300000)]
|
||||
0x000001e824b68530 JavaThread "parallel-7" daemon [_thread_blocked, id=8872, stack(0x00000012c1300000,0x00000012c1400000)]
|
||||
0x000001e824b6d120 JavaThread "parallel-8" daemon [_thread_blocked, id=17036, stack(0x00000012c1400000,0x00000012c1500000)]
|
||||
0x000001e824b6c700 JavaThread "Reconciler-1" daemon [_thread_blocked, id=8816, stack(0x00000012c1500000,0x00000012c1600000)]
|
||||
0x000001e824b6e050 JavaThread "parallel-9" daemon [_thread_blocked, id=21048, stack(0x00000012bef00000,0x00000012bf000000)]
|
||||
0x000001e824b6f490 JavaThread "parallel-10" daemon [_thread_blocked, id=22736, stack(0x00000012bdc00000,0x00000012bdd00000)]
|
||||
0x000001e824b68020 JavaThread "parallel-11" daemon [_thread_blocked, id=3636, stack(0x00000012c2100000,0x00000012c2200000)]
|
||||
0x000001e824b69460 JavaThread "parallel-12" daemon [_thread_blocked, id=19220, stack(0x00000012c2300000,0x00000012c2400000)]
|
||||
0x000001e824b6d630 JavaThread "CompletableFutureDelayScheduler" daemon [_thread_blocked, id=9904, stack(0x00000012c0400000,0x00000012c0500000)]
|
||||
|
||||
Other Threads:
|
||||
=>0x000001e81e7d9350 VMThread "VM Thread" [stack: 0x00000012be500000,0x00000012be600000] [id=2592]
|
||||
0x000001e81ea74be0 WatcherThread [stack: 0x00000012bf100000,0x00000012bf200000] [id=3964]
|
||||
0x000001e811592b90 GCTaskThread "GC Thread#0" [stack: 0x00000012be000000,0x00000012be100000] [id=16424]
|
||||
0x000001e823883970 GCTaskThread "GC Thread#1" [stack: 0x00000012bf300000,0x00000012bf400000] [id=11476]
|
||||
0x000001e823883c30 GCTaskThread "GC Thread#2" [stack: 0x00000012bf400000,0x00000012bf500000] [id=21796]
|
||||
0x000001e823883ef0 GCTaskThread "GC Thread#3" [stack: 0x00000012bf500000,0x00000012bf600000] [id=10008]
|
||||
0x000001e8238841b0 GCTaskThread "GC Thread#4" [stack: 0x00000012bf600000,0x00000012bf700000] [id=7956]
|
||||
0x000001e8237fcf40 GCTaskThread "GC Thread#5" [stack: 0x00000012bf700000,0x00000012bf800000] [id=19168]
|
||||
0x000001e823de5c40 GCTaskThread "GC Thread#6" [stack: 0x00000012bfa00000,0x00000012bfb00000] [id=21812]
|
||||
0x000001e823e29e80 GCTaskThread "GC Thread#7" [stack: 0x00000012bfb00000,0x00000012bfc00000] [id=2520]
|
||||
0x000001e823e70060 GCTaskThread "GC Thread#8" [stack: 0x00000012bfc00000,0x00000012bfd00000] [id=25436]
|
||||
0x000001e823e70320 GCTaskThread "GC Thread#9" [stack: 0x00000012bfd00000,0x00000012bfe00000] [id=12352]
|
||||
0x000001e81159ca00 ConcurrentGCThread "G1 Main Marker" [stack: 0x00000012be100000,0x00000012be200000] [id=2316]
|
||||
0x000001e81159d330 ConcurrentGCThread "G1 Conc#0" [stack: 0x00000012be200000,0x00000012be300000] [id=17556]
|
||||
0x000001e823e11050 ConcurrentGCThread "G1 Conc#1" [stack: 0x00000012bfe00000,0x00000012bff00000] [id=24856]
|
||||
0x000001e823c06eb0 ConcurrentGCThread "G1 Conc#2" [stack: 0x00000012bff00000,0x00000012c0000000] [id=4760]
|
||||
0x000001e81e663db0 ConcurrentGCThread "G1 Refine#0" [stack: 0x00000012be300000,0x00000012be400000] [id=22936]
|
||||
0x000001e81e664490 ConcurrentGCThread "G1 Service" [stack: 0x00000012be400000,0x00000012be500000] [id=5212]
|
||||
|
||||
Threads with active compile tasks:
|
||||
|
||||
VM state: at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||
[0x000001e811251aa0] Threads_lock - owner thread: 0x000001e81e7d9350
|
||||
[0x000001e81154fe40] Heap_lock - owner thread: 0x000001e823cc2130
|
||||
|
||||
Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit
|
||||
|
||||
CDS archive(s) not mapped
|
||||
Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000
|
||||
|
||||
GC Precious Log:
|
||||
CPUs: 12 total, 12 available
|
||||
Memory: 16251M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (32-bit)
|
||||
Heap Region Size: 1M
|
||||
Heap Min Capacity: 8M
|
||||
Heap Initial Capacity: 254M
|
||||
Heap Max Capacity: 1G
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 10
|
||||
Concurrent Workers: 3
|
||||
Concurrent Refinement Workers: 10
|
||||
Periodic GC: Disabled
|
||||
|
||||
Heap:
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
|
||||
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next)
|
||||
| 0|0x00000000c0000000, 0x00000000c0100000, 0x00000000c0100000|100%|HS| |TAMS 0x00000000c0100000, 0x00000000c0000000| Untracked
|
||||
| 1|0x00000000c0100000, 0x00000000c0200000, 0x00000000c0200000|100%|HC| |TAMS 0x00000000c0200000, 0x00000000c0100000| Untracked
|
||||
| 2|0x00000000c0200000, 0x00000000c0300000, 0x00000000c0300000|100%|HC| |TAMS 0x00000000c0300000, 0x00000000c0200000| Untracked
|
||||
| 3|0x00000000c0300000, 0x00000000c0400000, 0x00000000c0400000|100%|HC| |TAMS 0x00000000c0400000, 0x00000000c0300000| Untracked
|
||||
| 4|0x00000000c0400000, 0x00000000c0500000, 0x00000000c0500000|100%|HS| |TAMS 0x00000000c0500000, 0x00000000c0400000| Untracked
|
||||
| 5|0x00000000c0500000, 0x00000000c0600000, 0x00000000c0600000|100%|HC| |TAMS 0x00000000c0600000, 0x00000000c0500000| Untracked
|
||||
| 6|0x00000000c0600000, 0x00000000c06ffff8, 0x00000000c0700000| 99%| O| |TAMS 0x00000000c06ffff8, 0x00000000c0600000| Untracked
|
||||
| 7|0x00000000c0700000, 0x00000000c0800000, 0x00000000c0800000|100%| O| |TAMS 0x00000000c0800000, 0x00000000c0700000| Untracked
|
||||
| 8|0x00000000c0800000, 0x00000000c0900000, 0x00000000c0900000|100%| O| |TAMS 0x00000000c0900000, 0x00000000c0800000| Untracked
|
||||
| 9|0x00000000c0900000, 0x00000000c09fffe8, 0x00000000c0a00000| 99%| O| |TAMS 0x00000000c09fffe8, 0x00000000c0900000| Untracked
|
||||
| 10|0x00000000c0a00000, 0x00000000c0b00000, 0x00000000c0b00000|100%| O| |TAMS 0x00000000c0b00000, 0x00000000c0a00000| Untracked
|
||||
| 11|0x00000000c0b00000, 0x00000000c0c00000, 0x00000000c0c00000|100%| O| |TAMS 0x00000000c0c00000, 0x00000000c0b00000| Untracked
|
||||
| 12|0x00000000c0c00000, 0x00000000c0cffff0, 0x00000000c0d00000| 99%| O| |TAMS 0x00000000c0cffff0, 0x00000000c0c00000| Untracked
|
||||
| 13|0x00000000c0d00000, 0x00000000c0dffff0, 0x00000000c0e00000| 99%| O| |TAMS 0x00000000c0dffff0, 0x00000000c0d00000| Untracked
|
||||
| 14|0x00000000c0e00000, 0x00000000c0f00000, 0x00000000c0f00000|100%| O| |TAMS 0x00000000c0f00000, 0x00000000c0e00000| Untracked
|
||||
| 15|0x00000000c0f00000, 0x00000000c0ffffe8, 0x00000000c1000000| 99%| O| |TAMS 0x00000000c0ffffe8, 0x00000000c0f00000| Untracked
|
||||
| 16|0x00000000c1000000, 0x00000000c1100000, 0x00000000c1100000|100%| O| |TAMS 0x00000000c1100000, 0x00000000c1000000| Untracked
|
||||
| 17|0x00000000c1100000, 0x00000000c1200000, 0x00000000c1200000|100%| O| |TAMS 0x00000000c1200000, 0x00000000c1100000| Untracked
|
||||
| 18|0x00000000c1200000, 0x00000000c12fffb8, 0x00000000c1300000| 99%| O| |TAMS 0x00000000c12fffb8, 0x00000000c1200000| Untracked
|
||||
| 19|0x00000000c1300000, 0x00000000c13fffe8, 0x00000000c1400000| 99%| O| |TAMS 0x00000000c13fffe8, 0x00000000c1300000| Untracked
|
||||
| 20|0x00000000c1400000, 0x00000000c14ff268, 0x00000000c1500000| 99%| O| |TAMS 0x00000000c14ff268, 0x00000000c1400000| Untracked
|
||||
| 21|0x00000000c1500000, 0x00000000c15ffff8, 0x00000000c1600000| 99%| O| |TAMS 0x00000000c15ffff8, 0x00000000c1500000| Untracked
|
||||
| 22|0x00000000c1600000, 0x00000000c16f8e90, 0x00000000c1700000| 97%| O| |TAMS 0x00000000c16f8e90, 0x00000000c1600000| Untracked
|
||||
| 23|0x00000000c1700000, 0x00000000c17fffb8, 0x00000000c1800000| 99%| O| |TAMS 0x00000000c17fffb8, 0x00000000c1700000| Untracked
|
||||
| 24|0x00000000c1800000, 0x00000000c1900000, 0x00000000c1900000|100%| O| |TAMS 0x00000000c1900000, 0x00000000c1800000| Untracked
|
||||
| 25|0x00000000c1900000, 0x00000000c19ffff0, 0x00000000c1a00000| 99%| O| |TAMS 0x00000000c19ffff0, 0x00000000c1900000| Untracked
|
||||
| 26|0x00000000c1a00000, 0x00000000c1af7c58, 0x00000000c1b00000| 96%| O| |TAMS 0x00000000c1af7c58, 0x00000000c1a00000| Untracked
|
||||
| 27|0x00000000c1b00000, 0x00000000c1bfddd8, 0x00000000c1c00000| 99%| O| |TAMS 0x00000000c1bfddd8, 0x00000000c1b00000| Untracked
|
||||
| 28|0x00000000c1c00000, 0x00000000c1cfffe8, 0x00000000c1d00000| 99%| O| |TAMS 0x00000000c1cfffe8, 0x00000000c1c00000| Untracked
|
||||
| 29|0x00000000c1d00000, 0x00000000c1dffff8, 0x00000000c1e00000| 99%| O| |TAMS 0x00000000c1dffff8, 0x00000000c1d00000| Untracked
|
||||
| 30|0x00000000c1e00000, 0x00000000c1efffd0, 0x00000000c1f00000| 99%| O| |TAMS 0x00000000c1efffd0, 0x00000000c1e00000| Untracked
|
||||
| 31|0x00000000c1f00000, 0x00000000c1ff9c18, 0x00000000c2000000| 97%| O| |TAMS 0x00000000c1ff9c18, 0x00000000c1f00000| Untracked
|
||||
| 32|0x00000000c2000000, 0x00000000c20fffd8, 0x00000000c2100000| 99%| O| |TAMS 0x00000000c20fffd8, 0x00000000c2000000| Untracked
|
||||
| 33|0x00000000c2100000, 0x00000000c21fffe0, 0x00000000c2200000| 99%| O| |TAMS 0x00000000c21fffe0, 0x00000000c2100000| Untracked
|
||||
| 34|0x00000000c2200000, 0x00000000c22fffe0, 0x00000000c2300000| 99%| O| |TAMS 0x00000000c22fffe0, 0x00000000c2200000| Untracked
|
||||
| 35|0x00000000c2300000, 0x00000000c23ffff8, 0x00000000c2400000| 99%| O| |TAMS 0x00000000c23ffff8, 0x00000000c2300000| Untracked
|
||||
| 36|0x00000000c2400000, 0x00000000c24ff3c8, 0x00000000c2500000| 99%| O| |TAMS 0x00000000c24ff3c8, 0x00000000c2400000| Untracked
|
||||
| 37|0x00000000c2500000, 0x00000000c25ffff8, 0x00000000c2600000| 99%| O| |TAMS 0x00000000c25ffff8, 0x00000000c2500000| Untracked
|
||||
| 38|0x00000000c2600000, 0x00000000c26fffe8, 0x00000000c2700000| 99%| O| |TAMS 0x00000000c26fffe8, 0x00000000c2600000| Untracked
|
||||
| 39|0x00000000c2700000, 0x00000000c27f5860, 0x00000000c2800000| 95%| O| |TAMS 0x00000000c27f5860, 0x00000000c2700000| Untracked
|
||||
| 40|0x00000000c2800000, 0x00000000c28fe4d8, 0x00000000c2900000| 99%| O| |TAMS 0x00000000c28fe4d8, 0x00000000c2800000| Untracked
|
||||
| 41|0x00000000c2900000, 0x00000000c299d090, 0x00000000c2a00000| 61%| O| |TAMS 0x00000000c2900000, 0x00000000c2900000| Untracked
|
||||
| 42|0x00000000c2a00000, 0x00000000c2a00068, 0x00000000c2b00000| 0%| O| |TAMS 0x00000000c2a00000, 0x00000000c2a00000| Untracked
|
||||
| 43|0x00000000c2b00000, 0x00000000c2b00000, 0x00000000c2c00000| 0%| F| |TAMS 0x00000000c2b00000, 0x00000000c2b00000| Untracked
|
||||
| 44|0x00000000c2c00000, 0x00000000c2c00000, 0x00000000c2d00000| 0%| F| |TAMS 0x00000000c2c00000, 0x00000000c2c00000| Untracked
|
||||
| 45|0x00000000c2d00000, 0x00000000c2d00000, 0x00000000c2e00000| 0%| F| |TAMS 0x00000000c2d00000, 0x00000000c2d00000| Untracked
|
||||
| 46|0x00000000c2e00000, 0x00000000c2f00000, 0x00000000c2f00000|100%|HS| |TAMS 0x00000000c2f00000, 0x00000000c2e00000| Untracked
|
||||
| 47|0x00000000c2f00000, 0x00000000c2f00000, 0x00000000c3000000| 0%| F| |TAMS 0x00000000c2f00000, 0x00000000c2f00000| Untracked
|
||||
| 48|0x00000000c3000000, 0x00000000c3000000, 0x00000000c3100000| 0%| F| |TAMS 0x00000000c3000000, 0x00000000c3000000| Untracked
|
||||
| 49|0x00000000c3100000, 0x00000000c3100000, 0x00000000c3200000| 0%| F| |TAMS 0x00000000c3100000, 0x00000000c3100000| Untracked
|
||||
| 50|0x00000000c3200000, 0x00000000c3200000, 0x00000000c3300000| 0%| F| |TAMS 0x00000000c3200000, 0x00000000c3200000| Untracked
|
||||
| 51|0x00000000c3300000, 0x00000000c3300000, 0x00000000c3400000| 0%| F| |TAMS 0x00000000c3300000, 0x00000000c3300000| Untracked
|
||||
| 52|0x00000000c3400000, 0x00000000c3400000, 0x00000000c3500000| 0%| F| |TAMS 0x00000000c3400000, 0x00000000c3400000| Untracked
|
||||
| 53|0x00000000c3500000, 0x00000000c3500000, 0x00000000c3600000| 0%| F| |TAMS 0x00000000c3500000, 0x00000000c3500000| Untracked
|
||||
| 54|0x00000000c3600000, 0x00000000c3600000, 0x00000000c3700000| 0%| F| |TAMS 0x00000000c3600000, 0x00000000c3600000| Untracked
|
||||
| 55|0x00000000c3700000, 0x00000000c3700000, 0x00000000c3800000| 0%| F| |TAMS 0x00000000c3700000, 0x00000000c3700000| Untracked
|
||||
| 56|0x00000000c3800000, 0x00000000c3800000, 0x00000000c3900000| 0%| F| |TAMS 0x00000000c3800000, 0x00000000c3800000| Untracked
|
||||
| 57|0x00000000c3900000, 0x00000000c3900000, 0x00000000c3a00000| 0%| F| |TAMS 0x00000000c3900000, 0x00000000c3900000| Untracked
|
||||
| 58|0x00000000c3a00000, 0x00000000c3a00000, 0x00000000c3b00000| 0%| F| |TAMS 0x00000000c3a00000, 0x00000000c3a00000| Untracked
|
||||
| 59|0x00000000c3b00000, 0x00000000c3b00000, 0x00000000c3c00000| 0%| F| |TAMS 0x00000000c3b00000, 0x00000000c3b00000| Untracked
|
||||
| 60|0x00000000c3c00000, 0x00000000c3c00000, 0x00000000c3d00000| 0%| F| |TAMS 0x00000000c3c00000, 0x00000000c3c00000| Untracked
|
||||
| 61|0x00000000c3d00000, 0x00000000c3d00000, 0x00000000c3e00000| 0%| F| |TAMS 0x00000000c3d00000, 0x00000000c3d00000| Untracked
|
||||
| 62|0x00000000c3e00000, 0x00000000c3e00000, 0x00000000c3f00000| 0%| F| |TAMS 0x00000000c3e00000, 0x00000000c3e00000| Untracked
|
||||
| 63|0x00000000c3f00000, 0x00000000c3f00000, 0x00000000c4000000| 0%| F| |TAMS 0x00000000c3f00000, 0x00000000c3f00000| Untracked
|
||||
| 64|0x00000000c4000000, 0x00000000c4000000, 0x00000000c4100000| 0%| F| |TAMS 0x00000000c4000000, 0x00000000c4000000| Untracked
|
||||
| 65|0x00000000c4100000, 0x00000000c4100000, 0x00000000c4200000| 0%| F| |TAMS 0x00000000c4100000, 0x00000000c4100000| Untracked
|
||||
| 66|0x00000000c4200000, 0x00000000c4200000, 0x00000000c4300000| 0%| F| |TAMS 0x00000000c4200000, 0x00000000c4200000| Untracked
|
||||
| 67|0x00000000c4300000, 0x00000000c4300000, 0x00000000c4400000| 0%| F| |TAMS 0x00000000c4300000, 0x00000000c4300000| Untracked
|
||||
| 68|0x00000000c4400000, 0x00000000c4400000, 0x00000000c4500000| 0%| F| |TAMS 0x00000000c4400000, 0x00000000c4400000| Untracked
|
||||
| 69|0x00000000c4500000, 0x00000000c4500000, 0x00000000c4600000| 0%| F| |TAMS 0x00000000c4500000, 0x00000000c4500000| Untracked
|
||||
| 70|0x00000000c4600000, 0x00000000c4600000, 0x00000000c4700000| 0%| F| |TAMS 0x00000000c4600000, 0x00000000c4600000| Untracked
|
||||
| 71|0x00000000c4700000, 0x00000000c4700000, 0x00000000c4800000| 0%| F| |TAMS 0x00000000c4700000, 0x00000000c4700000| Untracked
|
||||
| 72|0x00000000c4800000, 0x00000000c4800000, 0x00000000c4900000| 0%| F| |TAMS 0x00000000c4800000, 0x00000000c4800000| Untracked
|
||||
| 73|0x00000000c4900000, 0x00000000c4900000, 0x00000000c4a00000| 0%| F| |TAMS 0x00000000c4900000, 0x00000000c4900000| Untracked
|
||||
| 74|0x00000000c4a00000, 0x00000000c4a00000, 0x00000000c4b00000| 0%| F| |TAMS 0x00000000c4a00000, 0x00000000c4a00000| Untracked
|
||||
| 75|0x00000000c4b00000, 0x00000000c4b00000, 0x00000000c4c00000| 0%| F| |TAMS 0x00000000c4b00000, 0x00000000c4b00000| Untracked
|
||||
| 76|0x00000000c4c00000, 0x00000000c4c00000, 0x00000000c4d00000| 0%| F| |TAMS 0x00000000c4c00000, 0x00000000c4c00000| Untracked
|
||||
| 77|0x00000000c4d00000, 0x00000000c4d00000, 0x00000000c4e00000| 0%| F| |TAMS 0x00000000c4d00000, 0x00000000c4d00000| Untracked
|
||||
| 78|0x00000000c4e00000, 0x00000000c4e00000, 0x00000000c4f00000| 0%| F| |TAMS 0x00000000c4e00000, 0x00000000c4e00000| Untracked
|
||||
| 79|0x00000000c4f00000, 0x00000000c4f00000, 0x00000000c5000000| 0%| F| |TAMS 0x00000000c4f00000, 0x00000000c4f00000| Untracked
|
||||
| 80|0x00000000c5000000, 0x00000000c5000000, 0x00000000c5100000| 0%| F| |TAMS 0x00000000c5000000, 0x00000000c5000000| Untracked
|
||||
| 81|0x00000000c5100000, 0x00000000c5100000, 0x00000000c5200000| 0%| F| |TAMS 0x00000000c5100000, 0x00000000c5100000| Untracked
|
||||
| 82|0x00000000c5200000, 0x00000000c5200000, 0x00000000c5300000| 0%| F| |TAMS 0x00000000c5200000, 0x00000000c5200000| Untracked
|
||||
| 83|0x00000000c5300000, 0x00000000c5300000, 0x00000000c5400000| 0%| F| |TAMS 0x00000000c5300000, 0x00000000c5300000| Untracked
|
||||
| 84|0x00000000c5400000, 0x00000000c5400000, 0x00000000c5500000| 0%| F| |TAMS 0x00000000c5400000, 0x00000000c5400000| Untracked
|
||||
| 85|0x00000000c5500000, 0x00000000c5500000, 0x00000000c5600000| 0%| F| |TAMS 0x00000000c5500000, 0x00000000c5500000| Untracked
|
||||
| 86|0x00000000c5600000, 0x00000000c5600000, 0x00000000c5700000| 0%| F| |TAMS 0x00000000c5600000, 0x00000000c5600000| Untracked
|
||||
| 87|0x00000000c5700000, 0x00000000c5700000, 0x00000000c5800000| 0%| F| |TAMS 0x00000000c5700000, 0x00000000c5700000| Untracked
|
||||
| 88|0x00000000c5800000, 0x00000000c5800000, 0x00000000c5900000| 0%| F| |TAMS 0x00000000c5800000, 0x00000000c5800000| Untracked
|
||||
| 89|0x00000000c5900000, 0x00000000c5900000, 0x00000000c5a00000| 0%| F| |TAMS 0x00000000c5900000, 0x00000000c5900000| Untracked
|
||||
| 90|0x00000000c5a00000, 0x00000000c5a00000, 0x00000000c5b00000| 0%| F| |TAMS 0x00000000c5a00000, 0x00000000c5a00000| Untracked
|
||||
| 91|0x00000000c5b00000, 0x00000000c5b00000, 0x00000000c5c00000| 0%| F| |TAMS 0x00000000c5b00000, 0x00000000c5b00000| Untracked
|
||||
| 92|0x00000000c5c00000, 0x00000000c5c00000, 0x00000000c5d00000| 0%| F| |TAMS 0x00000000c5c00000, 0x00000000c5c00000| Untracked
|
||||
| 93|0x00000000c5d00000, 0x00000000c5d00000, 0x00000000c5e00000| 0%| F| |TAMS 0x00000000c5d00000, 0x00000000c5d00000| Untracked
|
||||
| 94|0x00000000c5e00000, 0x00000000c5f00000, 0x00000000c5f00000|100%| O| |TAMS 0x00000000c5f00000, 0x00000000c5e00000| Untracked
|
||||
| 95|0x00000000c5f00000, 0x00000000c5f00000, 0x00000000c6000000| 0%| F| |TAMS 0x00000000c5f00000, 0x00000000c5f00000| Untracked
|
||||
| 96|0x00000000c6000000, 0x00000000c6100000, 0x00000000c6100000|100%| O| |TAMS 0x00000000c6100000, 0x00000000c6000000| Untracked
|
||||
| 97|0x00000000c6100000, 0x00000000c6100000, 0x00000000c6200000| 0%| F| |TAMS 0x00000000c6100000, 0x00000000c6100000| Untracked
|
||||
| 98|0x00000000c6200000, 0x00000000c6200000, 0x00000000c6300000| 0%| F| |TAMS 0x00000000c6200000, 0x00000000c6200000| Untracked
|
||||
| 99|0x00000000c6300000, 0x00000000c6300000, 0x00000000c6400000| 0%| F| |TAMS 0x00000000c6300000, 0x00000000c6300000| Untracked
|
||||
| 100|0x00000000c6400000, 0x00000000c6400000, 0x00000000c6500000| 0%| F| |TAMS 0x00000000c6400000, 0x00000000c6400000| Untracked
|
||||
| 101|0x00000000c6500000, 0x00000000c6500000, 0x00000000c6600000| 0%| F| |TAMS 0x00000000c6500000, 0x00000000c6500000| Untracked
|
||||
| 102|0x00000000c6600000, 0x00000000c6600000, 0x00000000c6700000| 0%| F| |TAMS 0x00000000c6600000, 0x00000000c6600000| Untracked
|
||||
| 103|0x00000000c6700000, 0x00000000c6700000, 0x00000000c6800000| 0%| F| |TAMS 0x00000000c6700000, 0x00000000c6700000| Untracked
|
||||
| 104|0x00000000c6800000, 0x00000000c6800000, 0x00000000c6900000| 0%| F| |TAMS 0x00000000c6800000, 0x00000000c6800000| Untracked
|
||||
| 105|0x00000000c6900000, 0x00000000c6900000, 0x00000000c6a00000| 0%| F| |TAMS 0x00000000c6900000, 0x00000000c6900000| Untracked
|
||||
| 106|0x00000000c6a00000, 0x00000000c6a00000, 0x00000000c6b00000| 0%| F| |TAMS 0x00000000c6a00000, 0x00000000c6a00000| Untracked
|
||||
| 107|0x00000000c6b00000, 0x00000000c6b00000, 0x00000000c6c00000| 0%| F| |TAMS 0x00000000c6b00000, 0x00000000c6b00000| Untracked
|
||||
| 108|0x00000000c6c00000, 0x00000000c6c00000, 0x00000000c6d00000| 0%| F| |TAMS 0x00000000c6c00000, 0x00000000c6c00000| Untracked
|
||||
| 109|0x00000000c6d00000, 0x00000000c6d00000, 0x00000000c6e00000| 0%| F| |TAMS 0x00000000c6d00000, 0x00000000c6d00000| Untracked
|
||||
| 110|0x00000000c6e00000, 0x00000000c6e00000, 0x00000000c6f00000| 0%| F| |TAMS 0x00000000c6e00000, 0x00000000c6e00000| Untracked
|
||||
| 111|0x00000000c6f00000, 0x00000000c6f00000, 0x00000000c7000000| 0%| F| |TAMS 0x00000000c6f00000, 0x00000000c6f00000| Untracked
|
||||
| 112|0x00000000c7000000, 0x00000000c7000000, 0x00000000c7100000| 0%| F| |TAMS 0x00000000c7000000, 0x00000000c7000000| Untracked
|
||||
| 113|0x00000000c7100000, 0x00000000c7100000, 0x00000000c7200000| 0%| F| |TAMS 0x00000000c7100000, 0x00000000c7100000| Untracked
|
||||
| 114|0x00000000c7200000, 0x00000000c7200000, 0x00000000c7300000| 0%| F| |TAMS 0x00000000c7200000, 0x00000000c7200000| Untracked
|
||||
| 115|0x00000000c7300000, 0x00000000c7300000, 0x00000000c7400000| 0%| F| |TAMS 0x00000000c7300000, 0x00000000c7300000| Untracked
|
||||
| 116|0x00000000c7400000, 0x00000000c7400000, 0x00000000c7500000| 0%| F| |TAMS 0x00000000c7400000, 0x00000000c7400000| Untracked
|
||||
| 117|0x00000000c7500000, 0x00000000c7500000, 0x00000000c7600000| 0%| F| |TAMS 0x00000000c7500000, 0x00000000c7500000| Untracked
|
||||
| 118|0x00000000c7600000, 0x00000000c7600000, 0x00000000c7700000| 0%| F| |TAMS 0x00000000c7600000, 0x00000000c7600000| Untracked
|
||||
| 119|0x00000000c7700000, 0x00000000c7700000, 0x00000000c7800000| 0%| F| |TAMS 0x00000000c7700000, 0x00000000c7700000| Untracked
|
||||
| 120|0x00000000c7800000, 0x00000000c7800000, 0x00000000c7900000| 0%| F| |TAMS 0x00000000c7800000, 0x00000000c7800000| Untracked
|
||||
| 121|0x00000000c7900000, 0x00000000c7900000, 0x00000000c7a00000| 0%| F| |TAMS 0x00000000c7900000, 0x00000000c7900000| Untracked
|
||||
| 122|0x00000000c7a00000, 0x00000000c7a00000, 0x00000000c7b00000| 0%| F| |TAMS 0x00000000c7a00000, 0x00000000c7a00000| Untracked
|
||||
| 123|0x00000000c7b00000, 0x00000000c7b058a8, 0x00000000c7c00000| 2%| E| |TAMS 0x00000000c7b00000, 0x00000000c7b00000| Complete
|
||||
|
||||
Card table byte_map: [0x000001e8196e0000,0x000001e8198e0000] _byte_map_base: 0x000001e8190e0000
|
||||
|
||||
Marking Bits (Prev, Next): (CMBitMap*) 0x000001e8115940d0, (CMBitMap*) 0x000001e811594110
|
||||
Prev Bits: [0x000001e819ae0000, 0x000001e81aae0000)
|
||||
Next Bits: [0x000001e81aae0000, 0x000001e81bae0000)
|
||||
|
||||
Polling page: 0x000001e811600000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 54.38 MB used.
|
||||
Class: 7.63 MB used.
|
||||
Both: 62.01 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 54.62 MB ( 85%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 7.88 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 62.50 MB ( 6%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 9.22 MB
|
||||
Class: 8.04 MB
|
||||
Both: 17.26 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 104.06 MB
|
||||
CDS: off
|
||||
MetaspaceReclaimPolicy: balanced
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- new_chunks_are_fully_committed: 0.
|
||||
- uncommit_free_chunks: 1.
|
||||
- use_allocation_guard: 0.
|
||||
- handle_deallocations: 1.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 9.
|
||||
num_arena_births: 1030.
|
||||
num_arena_deaths: 472.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 999.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 605.
|
||||
num_chunks_taken_from_freelist: 3388.
|
||||
num_chunk_merges: 208.
|
||||
num_chunk_splits: 2104.
|
||||
num_chunks_enlarged: 1451.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeCache: size=49152Kb used=19755Kb max_used=21080Kb free=29396Kb
|
||||
bounds [0x000001e8159d0000, 0x000001e816ec0000, 0x000001e8189d0000]
|
||||
total_blobs=11126 nmethods=10438 adapters=613
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 7153.296 Thread 0x000001e81e864ee0 10426 1 java.lang.ProcessImpl$2::<init> (20 bytes)
|
||||
Event: 7153.296 Thread 0x000001e81e864ee0 nmethod 10426 0x000001e816eaa910 code [0x000001e816eaaaa0, 0x000001e816eaac18]
|
||||
Event: 7153.296 Thread 0x000001e81e864ee0 10427 1 java.lang.ProcessImpl$2::run (5 bytes)
|
||||
Event: 7153.296 Thread 0x000001e81e864ee0 nmethod 10427 0x000001e816eaa610 code [0x000001e816eaa7a0, 0x000001e816eaa888]
|
||||
Event: 7153.505 Thread 0x000001e81e864ee0 10428 ! 1 java.io.FilterOutputStream::close (183 bytes)
|
||||
Event: 7153.551 Thread 0x000001e81e864ee0 nmethod 10428 0x000001e816ea9490 code [0x000001e816ea96a0, 0x000001e816ea9b78]
|
||||
Event: 7153.551 Thread 0x000001e81e864ee0 10430 1 java.lang.ProcessImpl$$Lambda$1143/0x00000001006c9328::run (8 bytes)
|
||||
Event: 7153.551 Thread 0x000001e81e864ee0 nmethod 10430 0x000001e816ea9190 code [0x000001e816ea9320, 0x000001e816ea9408]
|
||||
Event: 7153.551 Thread 0x000001e81e864ee0 10431 1 java.lang.ProcessImpl::lambda$new$0 (6 bytes)
|
||||
Event: 7153.551 Thread 0x000001e81e864ee0 nmethod 10431 0x000001e816ea8e90 code [0x000001e816ea9020, 0x000001e816ea90e8]
|
||||
Event: 8469.273 Thread 0x000001e81e864ee0 10433 1 java.lang.ProcessImpl$2::run (242 bytes)
|
||||
Event: 8469.274 Thread 0x000001e81e864ee0 nmethod 10433 0x000001e816ea7410 code [0x000001e816ea76c0, 0x000001e816ea8458]
|
||||
Event: 8469.274 Thread 0x000001e81e864ee0 10434 1 java.io.BufferedOutputStream::<init> (9 bytes)
|
||||
Event: 8469.274 Thread 0x000001e81e864ee0 nmethod 10434 0x000001e816ea6e90 code [0x000001e816ea7020, 0x000001e816ea72f8]
|
||||
Event: 8469.274 Thread 0x000001e81e864ee0 10435 1 java.lang.ProcessImpl::waitFor (136 bytes)
|
||||
Event: 8469.274 Thread 0x000001e81e864ee0 nmethod 10435 0x000001e816ea6610 code [0x000001e816ea6820, 0x000001e816ea6c38]
|
||||
Event: 9790.763 Thread 0x000001e81e864ee0 10437 1 org.eclipse.jdt.internal.compiler.lookup.MethodBinding::isClosingMethod (61 bytes)
|
||||
Event: 9790.764 Thread 0x000001e81e864ee0 nmethod 10437 0x000001e816ea6210 code [0x000001e816ea63c0, 0x000001e816ea6578]
|
||||
Event: 9790.764 Thread 0x000001e81e864ee0 10438 1 org.eclipse.jdt.internal.compiler.ast.StringLiteral::generateCode (32 bytes)
|
||||
Event: 9790.766 Thread 0x000001e81e864ee0 nmethod 10438 0x000001e816ea5d90 code [0x000001e816ea5f40, 0x000001e816ea60a8]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 11092.239 GC heap after
|
||||
{Heap after GC invocations=668 (full 632):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11102.448 GC heap before
|
||||
{Heap before GC invocations=668 (full 632):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11102.490 GC heap after
|
||||
{Heap after GC invocations=669 (full 633):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11112.708 GC heap before
|
||||
{Heap before GC invocations=669 (full 633):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11112.761 GC heap after
|
||||
{Heap after GC invocations=670 (full 634):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11122.985 GC heap before
|
||||
{Heap before GC invocations=670 (full 634):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11123.026 GC heap after
|
||||
{Heap after GC invocations=671 (full 635):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11133.247 GC heap before
|
||||
{Heap before GC invocations=671 (full 635):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11133.291 GC heap after
|
||||
{Heap after GC invocations=672 (full 636):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11143.523 GC heap before
|
||||
{Heap before GC invocations=672 (full 636):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11143.565 GC heap after
|
||||
{Heap after GC invocations=673 (full 637):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11153.777 GC heap before
|
||||
{Heap before GC invocations=673 (full 637):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11153.818 GC heap after
|
||||
{Heap after GC invocations=674 (full 638):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11164.029 GC heap before
|
||||
{Heap before GC invocations=674 (full 638):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11164.070 GC heap after
|
||||
{Heap after GC invocations=675 (full 639):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11174.285 GC heap before
|
||||
{Heap before GC invocations=675 (full 639):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11174.326 GC heap after
|
||||
{Heap after GC invocations=676 (full 640):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11184.566 GC heap before
|
||||
{Heap before GC invocations=676 (full 640):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11184.616 GC heap after
|
||||
{Heap after GC invocations=677 (full 641):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
Event: 11194.665 GC heap before
|
||||
{Heap before GC invocations=677 (full 641):
|
||||
garbage-first heap total 126976K, used 45533K [0x00000000c0000000, 0x0000000100000000)
|
||||
region size 1024K, 1 young (1024K), 0 survivors (0K)
|
||||
Metaspace used 63501K, committed 64000K, reserved 1114112K
|
||||
class space used 7816K, committed 8064K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (10 events):
|
||||
Event: 0.012 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
Event: 0.375 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
Event: 0.377 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
Event: 0.394 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
Event: 0.725 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
Event: 1.739 Loaded shared library c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
Event: 3.647 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\management.dll
|
||||
Event: 3.650 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\management_ext.dll
|
||||
Event: 4.793 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\sunmscapi.dll
|
||||
Event: 5.002 Loaded shared library C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\extnet.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 7.679 Thread 0x000001e82477da60 DEOPT PACKING pc=0x000001e8161656a4 sp=0x00000012c0efef50
|
||||
Event: 7.679 Thread 0x000001e82477da60 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0efe438 mode 0
|
||||
Event: 7.697 Thread 0x000001e824b6ea70 DEOPT PACKING pc=0x000001e8161656a4 sp=0x00000012c11ff3a0
|
||||
Event: 7.697 Thread 0x000001e824b6ea70 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c11fe888 mode 0
|
||||
Event: 244.691 Thread 0x000001e824106d90 DEOPT PACKING pc=0x000001e81607a0d4 sp=0x00000012c02fefa0
|
||||
Event: 244.691 Thread 0x000001e824106d90 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c02fe428 mode 0
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT PACKING pc=0x000001e81637688c sp=0x00000012c0afe600
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0afdb68 mode 0
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT PACKING pc=0x000001e8166202cc sp=0x00000012c0afe730
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0afdc10 mode 0
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT PACKING pc=0x000001e81637688c sp=0x00000012c0afe860
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0afddc8 mode 0
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT PACKING pc=0x000001e8166202cc sp=0x00000012c0afe990
|
||||
Event: 262.975 Thread 0x000001e82477c110 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0afde88 mode 0
|
||||
Event: 262.976 Thread 0x000001e82477c110 DEOPT PACKING pc=0x000001e81637688c sp=0x00000012c0afed00
|
||||
Event: 262.976 Thread 0x000001e82477c110 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0afe268 mode 0
|
||||
Event: 262.976 Thread 0x000001e82477c110 DEOPT PACKING pc=0x000001e8166202cc sp=0x00000012c0afee30
|
||||
Event: 262.976 Thread 0x000001e82477c110 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0afe328 mode 0
|
||||
Event: 3176.141 Thread 0x000001e824b6b2c0 DEOPT PACKING pc=0x000001e815f7e8d2 sp=0x00000012c0efdc60
|
||||
Event: 3176.141 Thread 0x000001e824b6b2c0 DEOPT UNPACKING pc=0x000001e815a27143 sp=0x00000012c0efd168 mode 3
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 305.857 Loading class sun/security/ssl/Alert$AlertConsumer
|
||||
Event: 305.857 Loading class sun/security/ssl/Alert$AlertConsumer done
|
||||
Event: 305.857 Loading class sun/security/ssl/Alert$Level
|
||||
Event: 305.857 Loading class sun/security/ssl/Alert$Level done
|
||||
Event: 305.858 Loading class sun/net/ConnectionResetException
|
||||
Event: 305.858 Loading class sun/net/ConnectionResetException done
|
||||
Event: 363.654 Loading class java/util/logging/LogRecord
|
||||
Event: 363.654 Loading class java/util/logging/LogRecord done
|
||||
Event: 513.033 Loading class java/util/concurrent/CompletableFuture$DelayedExecutor
|
||||
Event: 513.033 Loading class java/util/concurrent/CompletableFuture$DelayedExecutor done
|
||||
Event: 513.033 Loading class java/util/concurrent/CompletableFuture$TaskSubmitter
|
||||
Event: 513.033 Loading class java/util/concurrent/CompletableFuture$TaskSubmitter done
|
||||
Event: 513.033 Loading class java/util/concurrent/CompletableFuture$Delayer
|
||||
Event: 513.033 Loading class java/util/concurrent/CompletableFuture$Delayer done
|
||||
Event: 513.034 Loading class java/util/concurrent/CompletableFuture$Delayer$DaemonThreadFactory
|
||||
Event: 513.034 Loading class java/util/concurrent/CompletableFuture$Delayer$DaemonThreadFactory done
|
||||
Event: 3699.042 Loading class java/util/concurrent/locks/AbstractQueuedSynchronizer$SharedNode
|
||||
Event: 3699.042 Loading class java/util/concurrent/locks/AbstractQueuedSynchronizer$SharedNode done
|
||||
Event: 3699.096 Loading class java/io/CharArrayWriter
|
||||
Event: 3699.096 Loading class java/io/CharArrayWriter done
|
||||
|
||||
Classes unloaded (20 events):
|
||||
Event: 6064.129 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6800 'java/lang/invoke/LambdaForm$MH+0x00000001007f6800'
|
||||
Event: 6064.129 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6400 'java/lang/invoke/LambdaForm$MH+0x00000001007f6400'
|
||||
Event: 6064.129 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6000 'java/lang/invoke/LambdaForm$MH+0x00000001007f6000'
|
||||
Event: 6064.129 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5c00 'java/lang/invoke/LambdaForm$MH+0x00000001007f5c00'
|
||||
Event: 6064.129 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5800 'java/lang/invoke/LambdaForm$MH+0x00000001007f5800'
|
||||
Event: 6064.129 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5400 'java/lang/invoke/LambdaForm$MH+0x00000001007f5400'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f7000 'jdk/internal/reflect/GeneratedMethodAccessor65'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5c00 'jdk/internal/reflect/GeneratedConstructorAccessor86'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5800 'jdk/internal/reflect/GeneratedMethodAccessor64'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6400 'jdk/internal/reflect/GeneratedConstructorAccessor85'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6000 'jdk/internal/reflect/GeneratedMethodAccessor63'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5400 'jdk/internal/reflect/GeneratedMethodAccessor62'
|
||||
Event: 6234.742 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6800 'jdk/internal/reflect/GeneratedMethodAccessor61'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f7000 'jdk/internal/reflect/GeneratedMethodAccessor70'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6400 'jdk/internal/reflect/GeneratedConstructorAccessor88'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6000 'jdk/internal/reflect/GeneratedMethodAccessor69'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5c00 'jdk/internal/reflect/GeneratedConstructorAccessor87'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5800 'jdk/internal/reflect/GeneratedMethodAccessor68'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f6800 'jdk/internal/reflect/GeneratedMethodAccessor67'
|
||||
Event: 6586.463 Thread 0x000001e81e7d9350 Unloading class 0x00000001007f5400 'jdk/internal/reflect/GeneratedMethodAccessor66'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 5947.002 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c6778378}> (0x00000000c6778378)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 5947.002 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c6778f88}> (0x00000000c6778f88)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6077.788 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c53e3eb8}> (0x00000000c53e3eb8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6077.788 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c53e48e8}> (0x00000000c53e48e8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6077.788 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c53e5348}> (0x00000000c53e5348)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6077.789 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c53e5d78}> (0x00000000c53e5d78)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6077.789 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c53e6988}> (0x00000000c53e6988)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6077.789 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c53e7598}> (0x00000000c53e7598)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6078.405 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c7a89468}> (0x00000000c7a89468)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6078.405 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c7a89e98}> (0x00000000c7a89e98)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6078.405 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c7a8a8f8}> (0x00000000c7a8a8f8)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6078.405 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c7a8b328}> (0x00000000c7a8b328)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6078.405 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c7a8bf38}> (0x00000000c7a8bf38)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6078.405 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c7a8cb48}> (0x00000000c7a8cb48)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6081.098 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c5c2c9c0}> (0x00000000c5c2c9c0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6081.098 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c5c2d3f0}> (0x00000000c5c2d3f0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6081.098 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c5c2de50}> (0x00000000c5c2de50)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6081.098 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c5c2e880}> (0x00000000c5c2e880)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6081.098 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c5c2f490}> (0x00000000c5c2f490)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
Event: 6081.098 Thread 0x000001e82477c110 Exception <a 'sun/nio/fs/WindowsException'{0x00000000c5c300a0}> (0x00000000c5c300a0)
|
||||
thrown [s\src\hotspot\share\prims\jni.cpp, line 516]
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 11092.239 Executing VM operation: G1CollectFull done
|
||||
Event: 11102.448 Executing VM operation: G1CollectFull
|
||||
Event: 11102.490 Executing VM operation: G1CollectFull done
|
||||
Event: 11112.708 Executing VM operation: G1CollectFull
|
||||
Event: 11112.761 Executing VM operation: G1CollectFull done
|
||||
Event: 11122.985 Executing VM operation: G1CollectFull
|
||||
Event: 11123.026 Executing VM operation: G1CollectFull done
|
||||
Event: 11133.247 Executing VM operation: G1CollectFull
|
||||
Event: 11133.291 Executing VM operation: G1CollectFull done
|
||||
Event: 11143.523 Executing VM operation: G1CollectFull
|
||||
Event: 11143.565 Executing VM operation: G1CollectFull done
|
||||
Event: 11153.777 Executing VM operation: G1CollectFull
|
||||
Event: 11153.818 Executing VM operation: G1CollectFull done
|
||||
Event: 11164.029 Executing VM operation: G1CollectFull
|
||||
Event: 11164.070 Executing VM operation: G1CollectFull done
|
||||
Event: 11174.285 Executing VM operation: G1CollectFull
|
||||
Event: 11174.326 Executing VM operation: G1CollectFull done
|
||||
Event: 11184.566 Executing VM operation: G1CollectFull
|
||||
Event: 11184.616 Executing VM operation: G1CollectFull done
|
||||
Event: 11194.665 Executing VM operation: G1CollectFull
|
||||
|
||||
Events (20 events):
|
||||
Event: 6905.211 Thread 0x000001e824b6e560 Thread exited: 0x000001e824b6e560
|
||||
Event: 6905.211 Thread 0x000001e824b6bce0 Thread exited: 0x000001e824b6bce0
|
||||
Event: 6905.211 Thread 0x000001e824b68f50 Thread exited: 0x000001e824b68f50
|
||||
Event: 6965.219 Thread 0x000001e824b68a40 Thread exited: 0x000001e824b68a40
|
||||
Event: 7025.220 Thread 0x000001e824b6ea70 Thread exited: 0x000001e824b6ea70
|
||||
Event: 7085.223 Thread 0x000001e824b6a8a0 Thread exited: 0x000001e824b6a8a0
|
||||
Event: 7145.223 Thread 0x000001e824b6adb0 Thread exited: 0x000001e824b6adb0
|
||||
Event: 7205.227 Thread 0x000001e824b6b7d0 Thread exited: 0x000001e824b6b7d0
|
||||
Event: 7265.230 Thread 0x000001e824b6c1f0 Thread exited: 0x000001e824b6c1f0
|
||||
Event: 7325.233 Thread 0x000001e824b6a390 Thread exited: 0x000001e824b6a390
|
||||
Event: 9790.742 Thread 0x000001e824b6b7d0 Thread added: 0x000001e824b6b7d0
|
||||
Event: 9790.743 Thread 0x000001e824b6ef80 Thread added: 0x000001e824b6ef80
|
||||
Event: 9790.745 Thread 0x000001e824b68a40 Thread added: 0x000001e824b68a40
|
||||
Event: 9790.763 Thread 0x000001e824b6db40 Thread added: 0x000001e824b6db40
|
||||
Event: 9850.768 Thread 0x000001e824b6db40 Thread exited: 0x000001e824b6db40
|
||||
Event: 9850.769 Thread 0x000001e824b68a40 Thread exited: 0x000001e824b68a40
|
||||
Event: 9854.513 Thread 0x000001e824b6ef80 Thread exited: 0x000001e824b6ef80
|
||||
Event: 9854.513 Thread 0x000001e824b6b7d0 Thread exited: 0x000001e824b6b7d0
|
||||
Event: 9973.572 Thread 0x000001e824b6a390 Thread added: 0x000001e824b6a390
|
||||
Event: 10044.522 Thread 0x000001e824b6a390 Thread exited: 0x000001e824b6a390
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff6d4f60000 - 0x00007ff6d4f6e000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.exe
|
||||
0x00007ffa01890000 - 0x00007ffa01aa7000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||
0x00007ff9ff680000 - 0x00007ff9ff744000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||
0x00007ff9ff0d0000 - 0x00007ff9ff47d000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||
0x00007ff9febb0000 - 0x00007ff9fecc1000 C:\WINDOWS\System32\ucrtbase.dll
|
||||
0x00007ff9ee860000 - 0x00007ff9ee877000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jli.dll
|
||||
0x00007ff9ee8d0000 - 0x00007ff9ee8eb000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\VCRUNTIME140.dll
|
||||
0x00007ffa00960000 - 0x00007ffa00b0e000 C:\WINDOWS\System32\USER32.dll
|
||||
0x00007ff9fee90000 - 0x00007ff9feeb6000 C:\WINDOWS\System32\win32u.dll
|
||||
0x00007ff9ffd00000 - 0x00007ff9ffd29000 C:\WINDOWS\System32\GDI32.dll
|
||||
0x00007ff9e0950000 - 0x00007ff9e0be3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955\COMCTL32.dll
|
||||
0x00007ff9fecd0000 - 0x00007ff9fede9000 C:\WINDOWS\System32\gdi32full.dll
|
||||
0x00007ff9ffbb0000 - 0x00007ff9ffc57000 C:\WINDOWS\System32\msvcrt.dll
|
||||
0x00007ff9feec0000 - 0x00007ff9fef5a000 C:\WINDOWS\System32\msvcp_win.dll
|
||||
0x00007ff9ffc60000 - 0x00007ff9ffc91000 C:\WINDOWS\System32\IMM32.DLL
|
||||
0x00007ff9e9970000 - 0x00007ff9e997c000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\vcruntime140_1.dll
|
||||
0x00007ff9a2fa0000 - 0x00007ff9a302d000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\msvcp140.dll
|
||||
0x00007ff9860a0000 - 0x00007ff986d0a000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server\jvm.dll
|
||||
0x00007ff9ffad0000 - 0x00007ff9ffb82000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||
0x00007ffa00260000 - 0x00007ffa00309000 C:\WINDOWS\System32\sechost.dll
|
||||
0x00007ff9fedf0000 - 0x00007ff9fee18000 C:\WINDOWS\System32\bcrypt.dll
|
||||
0x00007ff9ff8b0000 - 0x00007ff9ff9c4000 C:\WINDOWS\System32\RPCRT4.dll
|
||||
0x00007ffa001e0000 - 0x00007ffa00251000 C:\WINDOWS\System32\WS2_32.dll
|
||||
0x00007ff9fda40000 - 0x00007ff9fda8d000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
|
||||
0x00007ff9f7de0000 - 0x00007ff9f7e14000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||
0x00007ff9f7130000 - 0x00007ff9f713a000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||
0x00007ff9fda20000 - 0x00007ff9fda33000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||
0x00007ff9fdcd0000 - 0x00007ff9fdce8000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ff9e89b0000 - 0x00007ff9e89ba000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\jimage.dll
|
||||
0x00007ff9fd0c0000 - 0x00007ff9fd2f2000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffa01470000 - 0x00007ffa017fd000 C:\WINDOWS\System32\combase.dll
|
||||
0x00007ffa00b10000 - 0x00007ffa00be7000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||
0x00007ff9f6890000 - 0x00007ff9f68c2000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
||||
0x00007ff9ff480000 - 0x00007ff9ff4fb000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
||||
0x00007ff9b9ac0000 - 0x00007ff9b9ae5000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\java.dll
|
||||
0x00007ff9df0f0000 - 0x00007ff9df108000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\zip.dll
|
||||
0x00007ffa00c00000 - 0x00007ffa01468000 C:\WINDOWS\System32\SHELL32.dll
|
||||
0x00007ff9fc710000 - 0x00007ff9fd00e000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||
0x00007ff9fc5d0000 - 0x00007ff9fc70f000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||
0x00007ff9ff750000 - 0x00007ff9ff849000 C:\WINDOWS\System32\SHCORE.dll
|
||||
0x00007ff9ff850000 - 0x00007ff9ff8ae000 C:\WINDOWS\System32\shlwapi.dll
|
||||
0x00007ff9feae0000 - 0x00007ff9feb01000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||
0x00007ff9cf7e0000 - 0x00007ff9cf7f9000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\net.dll
|
||||
0x00007ff9f7fc0000 - 0x00007ff9f80f6000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
|
||||
0x00007ff9fe140000 - 0x00007ff9fe1a9000 C:\WINDOWS\system32\mswsock.dll
|
||||
0x00007ff9cf650000 - 0x00007ff9cf666000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\nio.dll
|
||||
0x00007ff9e7f30000 - 0x00007ff9e7f40000 c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\verify.dll
|
||||
0x00007ff9fe3a0000 - 0x00007ff9fe3bb000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ff9fdc30000 - 0x00007ff9fdc65000 C:\WINDOWS\system32\rsaenh.dll
|
||||
0x00007ff9fe240000 - 0x00007ff9fe268000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||
0x00007ff9fe3c0000 - 0x00007ff9fe3cc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ff9fd6e0000 - 0x00007ff9fd70d000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffa00010000 - 0x00007ffa00019000 C:\WINDOWS\System32\NSI.dll
|
||||
0x00007ff9f7f90000 - 0x00007ff9f7fa9000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||
0x00007ff9f7f70000 - 0x00007ff9f7f8f000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||
0x00007ff9fd750000 - 0x00007ff9fd848000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||
0x00007ff9e7ef0000 - 0x00007ff9e7ef9000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\management.dll
|
||||
0x00007ff9e7e20000 - 0x00007ff9e7e2b000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\management_ext.dll
|
||||
0x00007ff9fff70000 - 0x00007ff9fff78000 C:\WINDOWS\System32\PSAPI.DLL
|
||||
0x00007ff9e26f0000 - 0x00007ff9e26fe000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\sunmscapi.dll
|
||||
0x00007ff9fef60000 - 0x00007ff9ff0c7000 C:\WINDOWS\System32\CRYPT32.dll
|
||||
0x00007ff9fe560000 - 0x00007ff9fe58e000 C:\WINDOWS\SYSTEM32\ncrypt.dll
|
||||
0x00007ff9fe520000 - 0x00007ff9fe557000 C:\WINDOWS\SYSTEM32\NTASN1.dll
|
||||
0x00007ff9f6680000 - 0x00007ff9f668a000 C:\Windows\System32\rasadhlp.dll
|
||||
0x00007ff9f7440000 - 0x00007ff9f74c3000 C:\WINDOWS\System32\fwpuclnt.dll
|
||||
0x00007ff9e2000000 - 0x00007ff9e2009000 C:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\extnet.dll
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3672_none_2713b9d173822955;c:\Users\dy20240402\.vscode\extensions\redhat.java-1.34.0-win32-x64\jre\17.0.12-win32-x86_64\bin\server
|
||||
|
||||
VM Arguments:
|
||||
jvm_args: -Xmx1024m -Dsts.lsp.client=vscode -Dsts.log.file=/dev/null -XX:TieredStopAtLevel=1 -Xlog:jni+resolve=off -Dspring.config.location=file:c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes\application.properties
|
||||
java_command: org.springframework.ide.vscode.boot.app.BootLanguageServerBootApp
|
||||
java_class_path (initial): c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\classes;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\annotations-24.1.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\antlr4-runtime-4.13.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-analysis-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-tree-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\asm-util-9.7.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\caffeine-3.1.8.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\checker-qual-3.12.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\classgraph-4.8.149.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-codec-1.16.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-compress-1.26.2.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-io-2.16.1.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-java-1.56.0-SNAPSHOT.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-lang3-3.14.0.jar;c:\Users\dy20240402\.vscode\extensions\vmware.vscode-spring-boot-1.56.0\language-server\BOOT-INF\lib\commons-language-server-1.56.0-SNAPS
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
intx CICompilerCount = 4 {product} {ergonomic}
|
||||
uint ConcGCThreads = 3 {product} {ergonomic}
|
||||
uint G1ConcRefinementThreads = 10 {product} {ergonomic}
|
||||
size_t G1HeapRegionSize = 1048576 {product} {ergonomic}
|
||||
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
|
||||
size_t InitialHeapSize = 266338304 {product} {ergonomic}
|
||||
size_t MarkStackSize = 4194304 {product} {ergonomic}
|
||||
size_t MaxHeapSize = 1073741824 {product} {command line}
|
||||
size_t MaxNewSize = 643825664 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic}
|
||||
size_t MinHeapSize = 8388608 {product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 0 {pd product} {ergonomic}
|
||||
bool ProfileInterpreter = false {pd product} {command line}
|
||||
uintx ProfiledCodeHeapSize = 0 {pd product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic}
|
||||
intx TieredStopAtLevel = 1 {product} {command line}
|
||||
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseG1GC = true {product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=warning,jni+resolve=off uptime,level,tags
|
||||
#1: stderr all=off uptime,level,tags
|
||||
|
||||
Environment Variables:
|
||||
JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\
|
||||
PATH=C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\ProgramData\chocolatey\bin;C:\Program Files\nodejs\;%LOCALAPPDATA%\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Microsoft\WindowsApps;C:\Users\dy20240402\AppData\Roaming\npm;C:\Users\dy20240402\AppData\Local\Android\Sdk\platform-tools;C:\Users\dy20240402\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Microsoft\jdk-17.0.11.9-hotspot\\bin;D:\apache-maven-3.9.9\bin;
|
||||
USERNAME=dy20240402
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel
|
||||
TMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
TEMP=C:\Users\DY2024~1\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.3958)
|
||||
OS uptime: 14 days 22:29 hours
|
||||
|
||||
CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 165 stepping 2 microcode 0xea, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, fma, vzeroupper, clflush, clflushopt
|
||||
Processor Information for all 12 processors :
|
||||
Max Mhz: 2592, Current Mhz: 2592, Mhz Limit: 2592
|
||||
|
||||
Memory: 4k page, system-wide physical 16251M (769M free)
|
||||
TotalPageFile size 33352M (AvailPageFile size 7M)
|
||||
current process WorkingSet (physical memory assigned to process): 115M, peak: 300M
|
||||
current process commit charge ("private bytes"): 319M, peak: 369M
|
||||
|
||||
vm_info: OpenJDK 64-Bit Server VM (17.0.12+7) for windows-amd64 JRE (17.0.12+7), built on Jul 16 2024 22:08:24 by "admin" with MS VC++ 16.10 / 16.11 (VS2019)
|
||||
|
||||
END.
|
6727
replay_pid13660.log
Normal file
6727
replay_pid13660.log
Normal file
File diff suppressed because one or more lines are too long
4235
replay_pid19692.log
Normal file
4235
replay_pid19692.log
Normal file
File diff suppressed because it is too large
Load Diff
4402
replay_pid20672.log
Normal file
4402
replay_pid20672.log
Normal file
File diff suppressed because one or more lines are too long
7125
replay_pid6728.log
Normal file
7125
replay_pid6728.log
Normal file
File diff suppressed because one or more lines are too long
1
settings.gradle
Normal file
1
settings.gradle
Normal file
@ -0,0 +1 @@
|
||||
rootProject.name = 'demo'
|
12
src/main/java/com/example/demo/DemoApplication.java
Normal file
12
src/main/java/com/example/demo/DemoApplication.java
Normal file
@ -0,0 +1,12 @@
|
||||
package com.example.demo;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class DemoApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(DemoApplication.class, args);
|
||||
}
|
||||
}
|
18
src/main/java/com/example/demo/config/WebConfig.java
Normal file
18
src/main/java/com/example/demo/config/WebConfig.java
Normal file
@ -0,0 +1,18 @@
|
||||
package com.example.demo.config;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||
|
||||
@Configuration
|
||||
public class WebConfig implements WebMvcConfigurer {
|
||||
@Override
|
||||
public void addCorsMappings(CorsRegistry registry) {
|
||||
registry.addMapping("/**")
|
||||
.allowedOrigins("http://localhost:3000") // React 애플리케이션의 주소
|
||||
.allowedMethods("GET", "POST", "PUT", "DELETE")
|
||||
.allowedHeaders("*")
|
||||
.allowCredentials(true);
|
||||
}
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package com.example.demo.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import java.util.List;
|
||||
import jakarta.servlet.http.HttpSession;
|
||||
import com.example.demo.entity.Board;
|
||||
import com.example.demo.entity.User;
|
||||
import com.example.demo.service.BoardService;
|
||||
import com.example.demo.service.UserService;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/boards")
|
||||
public class BoardController {
|
||||
|
||||
private final BoardService boardService;
|
||||
private final UserService userService; // UserService를 추가하여 사용자를 조회
|
||||
|
||||
@Autowired
|
||||
public BoardController(BoardService boardService, UserService userService) {
|
||||
this.boardService = boardService;
|
||||
this.userService = userService; // UserService 주입
|
||||
}
|
||||
|
||||
// 전체 게시글 가져오기
|
||||
@GetMapping
|
||||
public List<Board> getBoards() {
|
||||
return boardService.getAllBoards();
|
||||
}
|
||||
|
||||
// 특정 사용자의 게시글 개수 가져오기
|
||||
@GetMapping("/count/{userId}")
|
||||
public int getPostCountByUserId(@PathVariable String userId) {
|
||||
return boardService.getPostCountByUserId(userId);
|
||||
}
|
||||
|
||||
// 특정 사용자의 게시글 목록 가져오기
|
||||
@GetMapping("/user/{userId}")
|
||||
public List<Board> getPostsByUserId(@PathVariable String userId) {
|
||||
return boardService.getPostsByUserId(userId);
|
||||
}
|
||||
|
||||
@PostMapping("/create")
|
||||
public ResponseEntity<?> createPost(@RequestBody Board board, HttpSession session) {
|
||||
try {
|
||||
// 세션에서 현재 로그인된 사용자 가져오기
|
||||
User loggedInUser = (User) session.getAttribute("user");
|
||||
if (loggedInUser == null) {
|
||||
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("로그인이 필요합니다.");
|
||||
}
|
||||
|
||||
// 게시글에 현재 로그인된 사용자 설정
|
||||
board.setUser(loggedInUser);
|
||||
|
||||
// 게시글 저장
|
||||
Board createdBoard = boardService.saveBoard(board);
|
||||
return ResponseEntity.ok("게시글 작성 완료");
|
||||
} catch (Exception e) {
|
||||
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR)
|
||||
.body("게시글 작성 중 오류 발생: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
package com.example.demo.controller;
|
||||
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import com.example.demo.entity.User;
|
||||
import com.example.demo.service.UserService;
|
||||
import jakarta.servlet.http.HttpSession;
|
||||
import java.util.List;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/users")
|
||||
public class UserController {
|
||||
private final UserService userService;
|
||||
|
||||
public UserController(UserService userService) {
|
||||
this.userService = userService;
|
||||
}
|
||||
|
||||
@GetMapping
|
||||
public List<User> getUsers() {
|
||||
return userService.getAllUsers();
|
||||
}
|
||||
|
||||
// POST 요청을 처리하는 메서드 (회원가입)
|
||||
@PostMapping("/register")
|
||||
public ResponseEntity<?> createUser(@RequestBody User user) {
|
||||
try {
|
||||
User createdUser = userService.saveUser(user);
|
||||
return ResponseEntity.ok("회원가입 성공");
|
||||
} catch (Exception e) {
|
||||
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body("사용자 생성 중 오류 발생: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
// 로그인 요청 처리
|
||||
@PostMapping("/login")
|
||||
public ResponseEntity<?> login(@RequestBody User user, HttpSession session) {
|
||||
User authenticatedUser = userService.authenticate(user.getUserId(), user.getUserPassword());
|
||||
if (authenticatedUser == null) {
|
||||
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("아이디 또는 비밀번호가 잘못되었습니다.");
|
||||
}
|
||||
|
||||
// 로그인 성공 시 세션에 사용자 정보 저장
|
||||
session.setAttribute("user", authenticatedUser);
|
||||
return ResponseEntity.ok("로그인 성공");
|
||||
}
|
||||
|
||||
|
||||
// 로그아웃 처리
|
||||
@PostMapping("/logout")
|
||||
public ResponseEntity<?> logout(HttpSession session) {
|
||||
session.invalidate(); // 세션 무효화
|
||||
return ResponseEntity.ok("로그아웃 성공");
|
||||
}
|
||||
|
||||
// 현재 로그인한 사용자 정보 반환
|
||||
@GetMapping("/current-user")
|
||||
public ResponseEntity<?> getCurrentUser(HttpSession session) {
|
||||
User user = (User) session.getAttribute("user");
|
||||
if (user == null) {
|
||||
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("로그인이 필요합니다.");
|
||||
}
|
||||
return ResponseEntity.ok(user);
|
||||
}
|
||||
|
||||
// Update an existing user (UPDATE)
|
||||
@PutMapping("/{id}")
|
||||
public User updateUser(@PathVariable String id, @RequestBody User userDetails) {
|
||||
return userService.updateUser(id, userDetails);
|
||||
}
|
||||
|
||||
// Delete a user (DELETE)
|
||||
@DeleteMapping("/{id}")
|
||||
public void deleteUser(@PathVariable String id) {
|
||||
userService.deleteUser(id);
|
||||
}
|
||||
}
|
87
src/main/java/com/example/demo/entity/Board.java
Normal file
87
src/main/java/com/example/demo/entity/Board.java
Normal file
@ -0,0 +1,87 @@
|
||||
package com.example.demo.entity;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Entity
|
||||
@Table(name = "BOARD_TB")
|
||||
public class Board {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "BOARD_SEQ")
|
||||
@SequenceGenerator(name = "BOARD_SEQ", sequenceName = "BOARD_SEQ", allocationSize = 1)
|
||||
@Column(name = "BOARD_NUMBER")
|
||||
private Long boardNumber;
|
||||
|
||||
@Column(name = "BOARD_CATEGORY", nullable = false)
|
||||
private Integer boardCategory;
|
||||
|
||||
@Column(name = "BOARD_TITLE", nullable = false)
|
||||
private String boardTitle;
|
||||
|
||||
// VARCHAR2(4000)으로 설정된 필드
|
||||
@Column(name = "BOARD_WRITE", nullable = false, length = 4000)
|
||||
private String boardWrite;
|
||||
|
||||
@Column(name = "BOARD_DATE")
|
||||
private LocalDateTime boardDate;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "USER_ID", nullable = false)
|
||||
private User user;
|
||||
|
||||
// 자동으로 게시글 작성 시간을 현재 시간으로 설정
|
||||
@PrePersist
|
||||
protected void onCreate() {
|
||||
this.boardDate = LocalDateTime.now();
|
||||
}
|
||||
|
||||
// Getters and Setters
|
||||
public Long getBoardNumber() {
|
||||
return boardNumber;
|
||||
}
|
||||
|
||||
public void setBoardNumber(Long boardNumber) {
|
||||
this.boardNumber = boardNumber;
|
||||
}
|
||||
|
||||
public Integer getBoardCategory() {
|
||||
return boardCategory;
|
||||
}
|
||||
|
||||
public void setBoardCategory(Integer boardCategory) {
|
||||
this.boardCategory = boardCategory;
|
||||
}
|
||||
|
||||
public String getBoardTitle() {
|
||||
return boardTitle;
|
||||
}
|
||||
|
||||
public void setBoardTitle(String boardTitle) {
|
||||
this.boardTitle = boardTitle;
|
||||
}
|
||||
|
||||
public String getBoardWrite() {
|
||||
return boardWrite;
|
||||
}
|
||||
|
||||
public void setBoardWrite(String boardWrite) {
|
||||
this.boardWrite = boardWrite;
|
||||
}
|
||||
|
||||
public LocalDateTime getBoardDate() {
|
||||
return boardDate;
|
||||
}
|
||||
|
||||
public void setBoardDate(LocalDateTime boardDate) {
|
||||
this.boardDate = boardDate;
|
||||
}
|
||||
|
||||
public User getUser() {
|
||||
return user;
|
||||
}
|
||||
|
||||
public void setUser(User user) {
|
||||
this.user = user;
|
||||
}
|
||||
}
|
91
src/main/java/com/example/demo/entity/User.java
Normal file
91
src/main/java/com/example/demo/entity/User.java
Normal file
@ -0,0 +1,91 @@
|
||||
package com.example.demo.entity;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import jakarta.persistence.*;
|
||||
import java.sql.Blob;
|
||||
import java.util.List;
|
||||
|
||||
@Entity
|
||||
@Table(name = "USER_TB")
|
||||
public class User {
|
||||
@Id
|
||||
@Column(name = "USER_ID")
|
||||
private String userId;
|
||||
|
||||
@Column(name = "USER_NAME", nullable = false)
|
||||
private String userName;
|
||||
|
||||
@Column(name = "USER_NICKNAME", unique = true, nullable = false)
|
||||
private String userNickname;
|
||||
|
||||
@Column(name = "USER_PW", nullable = false)
|
||||
private String userPassword;
|
||||
|
||||
@Lob
|
||||
@Column(name = "USER_IMAGE")
|
||||
private Blob userImage;
|
||||
|
||||
@Column(name = "USER_LV")
|
||||
private Integer userLevel = 1;
|
||||
|
||||
@JsonIgnore // 이 필드를 직렬화할 때 무시
|
||||
@OneToMany(mappedBy = "user", fetch = FetchType.LAZY)
|
||||
private List<Board> boards;
|
||||
|
||||
// Getters and Setters
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserNickname() {
|
||||
return userNickname;
|
||||
}
|
||||
|
||||
public void setUserNickname(String userNickname) {
|
||||
this.userNickname = userNickname;
|
||||
}
|
||||
|
||||
public String getUserPassword() {
|
||||
return userPassword;
|
||||
}
|
||||
|
||||
public void setUserPassword(String userPassword) {
|
||||
this.userPassword = userPassword;
|
||||
}
|
||||
|
||||
public Blob getUserImage() {
|
||||
return userImage;
|
||||
}
|
||||
|
||||
public void setUserImage(Blob userImage) {
|
||||
this.userImage = userImage;
|
||||
}
|
||||
|
||||
public Integer getUserLevel() {
|
||||
return userLevel;
|
||||
}
|
||||
|
||||
public void setUserLevel(Integer userLevel) {
|
||||
this.userLevel = userLevel;
|
||||
}
|
||||
|
||||
public List<Board> getBoards() {
|
||||
return boards;
|
||||
}
|
||||
|
||||
public void setBoards(List<Board> boards) {
|
||||
this.boards = boards;
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.example.demo.repository;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
import java.util.List;
|
||||
import com.example.demo.entity.Board;
|
||||
|
||||
public interface BoardRepository extends JpaRepository<Board, Long> {
|
||||
|
||||
// 특정 사용자의 게시글 개수를 반환하는 쿼리
|
||||
@Query("SELECT COUNT(b) FROM Board b WHERE b.user.userId = :userId")
|
||||
int countPostsByUserId(@Param("userId") String userId);
|
||||
|
||||
// 특정 사용자가 작성한 게시글 목록을 가져오는 메서드
|
||||
@Query("SELECT b FROM Board b WHERE b.user.userId = :userId")
|
||||
List<Board> findByUserUserId(@Param("userId") String userId);
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.example.demo.repository;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
import com.example.demo.entity.User;
|
||||
|
||||
public interface UserRepository extends JpaRepository<User, String> {
|
||||
}
|
34
src/main/java/com/example/demo/service/BoardService.java
Normal file
34
src/main/java/com/example/demo/service/BoardService.java
Normal file
@ -0,0 +1,34 @@
|
||||
package com.example.demo.service;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.example.demo.entity.Board;
|
||||
import com.example.demo.repository.BoardRepository;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
public class BoardService {
|
||||
|
||||
private final BoardRepository boardRepository;
|
||||
|
||||
public BoardService(BoardRepository boardRepository) {
|
||||
this.boardRepository = boardRepository;
|
||||
}
|
||||
|
||||
public List<Board> getAllBoards() {
|
||||
return boardRepository.findAll();
|
||||
}
|
||||
|
||||
public int getPostCountByUserId(String userId) {
|
||||
return boardRepository.countPostsByUserId(userId);
|
||||
}
|
||||
|
||||
public List<Board> getPostsByUserId(String userId) {
|
||||
return boardRepository.findByUserUserId(userId);
|
||||
}
|
||||
|
||||
@Transactional
|
||||
public Board saveBoard(Board board) {
|
||||
return boardRepository.save(board);
|
||||
}
|
||||
}
|
64
src/main/java/com/example/demo/service/UserService.java
Normal file
64
src/main/java/com/example/demo/service/UserService.java
Normal file
@ -0,0 +1,64 @@
|
||||
package com.example.demo.service;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.example.demo.entity.User;
|
||||
import com.example.demo.repository.UserRepository;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@Service
|
||||
public class UserService {
|
||||
private final UserRepository userRepository;
|
||||
|
||||
public UserService(UserRepository userRepository) {
|
||||
this.userRepository = userRepository;
|
||||
}
|
||||
|
||||
public List<User> getAllUsers() {
|
||||
return userRepository.findAll();
|
||||
}
|
||||
|
||||
// Create a new user
|
||||
@Transactional
|
||||
public User saveUser(User user) {
|
||||
try {
|
||||
return userRepository.save(user);
|
||||
} catch (Exception e) {
|
||||
System.out.println("사용자 저장 오류: " + e.getMessage());
|
||||
throw new RuntimeException("사용자 저장 중 오류 발생", e);
|
||||
}
|
||||
}
|
||||
|
||||
// 사용자 ID로 DB에서 사용자 정보 가져오기
|
||||
public User getUserById(String userId) {
|
||||
return userRepository.findById(userId).orElse(null);
|
||||
}
|
||||
|
||||
// 사용자 인증 메서드 추가
|
||||
public User authenticate(String userId, String userPassword) {
|
||||
User user = getUserById(userId);
|
||||
if (user != null && user.getUserPassword().equals(userPassword)) {
|
||||
return user;
|
||||
}
|
||||
return null; // 인증 실패 시 null 반환
|
||||
}
|
||||
|
||||
// Update an existing user
|
||||
public User updateUser(String id, User userDetails) {
|
||||
Optional<User> userOptional = userRepository.findById(id);
|
||||
if (userOptional.isPresent()) {
|
||||
User user = userOptional.get();
|
||||
user.setUserName(userDetails.getUserName());
|
||||
user.setUserNickname(userDetails.getUserNickname());
|
||||
user.setUserPassword(userDetails.getUserPassword());
|
||||
return userRepository.save(user);
|
||||
} else {
|
||||
throw new RuntimeException("User not found with id " + id);
|
||||
}
|
||||
}
|
||||
|
||||
// Delete a user
|
||||
public void deleteUser(String id) {
|
||||
userRepository.deleteById(id);
|
||||
}
|
||||
}
|
19
src/main/resources/application.properties
Normal file
19
src/main/resources/application.properties
Normal file
@ -0,0 +1,19 @@
|
||||
spring.application.name=demo
|
||||
|
||||
# 데이터베이스 설정
|
||||
spring.datasource.url=jdbc:oracle:thin:@211.231.136.117:1522:XE
|
||||
spring.datasource.username=HYUNWOO00
|
||||
spring.datasource.password=1004@
|
||||
spring.datasource.driver-class-name=oracle.jdbc.OracleDriver
|
||||
spring.jpa.properties.hibernate.default_schema=HYUNWOO00
|
||||
|
||||
spring.mvc.static-path-pattern=/resources/**
|
||||
spring.resources.static-locations=classpath:/demo/
|
||||
spring.mvc.pathmatch.matching-strategy=ant-path-matcher
|
||||
|
||||
spring.jpa.hibernate.ddl-auto=update
|
||||
spring.jpa.properties.hibernate.globally_quoted_identifiers=false
|
||||
spring.jpa.show-sql=true
|
||||
spring.mvc.throw-exception-if-no-handler-found=true
|
||||
spring.resources.add-mappings=false
|
||||
spring.mvc.hiddenmethod.filter.enabled=false
|
13
src/test/java/com/example/demo/DemoApplicationTests.java
Normal file
13
src/test/java/com/example/demo/DemoApplicationTests.java
Normal file
@ -0,0 +1,13 @@
|
||||
package com.example.demo;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class DemoApplicationTest {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
// 이 테스트는 애플리케이션 컨텍스트가 올바르게 로드되는지 확인합니다.
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user