> Task :com.springapp.springapp.SpringappApplication.main()
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v4.0.5)
2026-04-14T15:42:23.584+03:00 INFO 14888 --- [springapp] [ main] c.s.springapp.SpringappApplication : Starting SpringappApplication using Java 23 with PID 14888 (J:\springapp\build\classes\java\main started by kuk in J:\springapp)
2026-04-14T15:42:23.586+03:00 INFO 14888 --- [springapp] [ main] c.s.springapp.SpringappApplication : No active profile set, falling back to 1 default profile: "default"
2026-04-14T15:42:23.887+03:00 INFO 14888 --- [springapp] [ main] c.s.springapp.SpringappApplication : Started SpringappApplication in 0.586 seconds (process running for 0.842)
Process finished with exit code 0name: dockerimages
services:
myapp:
image: java.myapp:1.0.2
networks:
default: null
ports:
- mode: ingress
target: 47500
published: "47500"
protocol: tcp
pull_policy: never
volumes:
- type: bind
source: /
target: /home/radxa/data
bind: {} # <- Вот это поле я не понимаю откуда берётся и что с ним делать
networks:
default:
name: dockerimages_default --
-- PostgreSQL database dump
--
-- Dumped from database version 17.4
-- Dumped by pg_dump version 17.4
-- Started on 2025-05-10 18:20:46
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
--
-- TOC entry 228 (class 1259 OID 24597)
-- Name: accounts; Type: TABLE; Schema: acman; Owner: pang_acman
--
CREATE TABLE acman.accounts (
id integer NOT NULL,
firstname character(100),
nickname character(100),
email character(100)
)
PARTITION BY RANGE (id);
ALTER TABLE acman.accounts OWNER TO pang_acman;
--
-- TOC entry 4831 (class 0 OID 0)
-- Dependencies: 228
-- Name: TABLE accounts; Type: COMMENT; Schema: acman; Owner: pang_acman
--
COMMENT ON TABLE acman.accounts IS 'для надра4ивания опыта с базами';
--
-- TOC entry 4680 (class 2606 OID 24601)
-- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: acman; Owner: pang_acman
--
ALTER TABLE ONLY acman.accounts
ADD CONSTRAINT accounts_pkey PRIMARY KEY (id);
-- Completed on 2025-05-10 18:20:46
--
-- PostgreSQL database dump complete
-- @Entity
@Setter
@Getter
@AllArgsConstructor
@NoArgsConstructor
@Table(name="accounts", schema = "acman")
public class PsqlRow
{
@Id
@Column(name = "id", nullable = false) //Не должно быть null, это ключ
private Long id;
@Basic
@Column(name = "email")
private String email;
@Basic
@Column(name = "nickname")
private String nickname;
@Basic
@Column(name = "firstname")
private String firstname;
}13:58:14 [INFO ] >> 102 svema0705 Ilya svema0705@mail.mail
Hibernate:
insert
into
acman.accounts
(email, firstname, nickname, id)
values
(?, ?, ?, ?)
^^^^^^^^^^^^ почему так?
13:58:14 [INFO ] >> HHH10001008: Cleaning up connection pool [jdbc:postgresql://192.168.7.231:36000/accounts]insert
into
acman.accounts
(email, firstname, nickname, id)
values
('svema0705@mail.mail', 'Ilya', 'svema0705', 202)INSERT 0 1
Query returned successfully in 29 msec. mpv у тебя работает в режиме процессора