This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application.properties: | |
spring.jpa.properties.hibernate.format_sql=true | |
logging.level.org.hibernate.SQL=DEBUG | |
logging.level.org.hibernate.cache.internal=TRACE | |
=================================================================================================== | |
StudentController.java: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.sunmeat.hibernate; | |
import jakarta.persistence.Entity; | |
import jakarta.persistence.GeneratedValue; | |
import jakarta.persistence.GenerationType; | |
import jakarta.persistence.Id; | |
import jakarta.persistence.Table; | |
import jakarta.persistence.Version; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = input("Введiть ваше iм'я: ") | |
print(f"Привiт, {name}!") | |
age = int(input("Ваш вiк: ")) | |
# price = float(input("Введiть цiну: ")) | |
age = age + 1 | |
print(age) | |
########################################################### | |
# продвинуте введення: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <windows.h> | |
using namespace std; | |
class Vector { | |
unsigned int size = 0; // количество действительно присутствующих элементов в контейнере | |
unsigned int capacity = 10; // ёмкость (вместительность, запас памяти) | |
int* data = nullptr; // указатель на динамический массив целых чисел | |
// метод приватный, потому что это внутрення логика класса, о которой клиент думать не должен |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
class Fraction { | |
int numerator; | |
int denominator; | |
// наибольший общий делитель | |
int gcd(int a, int b) { | |
while (b != 0) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="uk"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Наша перша HTML-сторінка</title> | |
</head> | |
<body> | |
<header> | |
<hgroup> | |
<h1>Ласкаво прошу до світу HTML!</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="uk"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Наша перша HTML-сторінка</title> | |
</head> | |
<body> | |
<h1>Ласкаво прошу до світу HTML!</h1> | |
<p>Сьогодні ми розпочинаємо захопливу подорож у світ веб-розробки. HTML, або мова розмітки гіпертексту, є основою кожної веб-сторінки. Завдяки HTML ви можете структурувати контент, робити його зрозумілим та привабливим для користувачів.</p> | |
<p>Вивчаючи HTML, ви навчитеся створювати заголовки, абзаци, списки, вставляти зображення та додавати посилання. Це дозволить вам ділитися інформацією та надавати користувачам можливість переходити на інші сторінки.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("Демонстрація всіх escape-послідовностей в Python:\n") | |
print("1. Нова строка: \\n -> Це перша строка.\nЦе друга строка.") | |
print("2. Горизонтальна табуляція: \\t -> Це текст з табуляцією:\tТаб.") | |
print("3. Обратний слеш: \\\\ -> Показує слеш \\.") | |
print("4. Одинарна лапка: \\\' -> Це текст з одинарною кавичкою: \'Приклад\'.") | |
print('5. Подвійна лапка: \\" -> Це текст з подвійною кавичкою: \"Приклад\".') | |
print("6. Повернення каретки: \\r -> Повернення каретки перезаписує рядок\rНова строка.") | |
print("7. Обратна табуляція: \\b -> Текст з оборотною табуляцією: Приклад\b.") | |
################################################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Course.java: | |
... | |
@Entity | |
@Table(name = "courses") | |
public class Course { | |
@Id | |
@GeneratedValue(strategy = GenerationType.IDENTITY) | |
private Long id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
StudentRepo.java: | |
package com.sunmeat.hibernate; | |
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; |
NewerOlder