mirror of
https://github.com/OtusTeam/Spring.git
synced 2026-05-30 10:50:42 +00:00
L05-springBoot
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
target/
|
||||
|
||||
### STS ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/build/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>ru.otus</groupId>
|
||||
<artifactId>spring-05-springBoot</artifactId>
|
||||
<version>1.0</version>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>3.0.5</version>
|
||||
</parent>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
|
||||
<maven-enforcer-plugin.version>3.1.0</maven-enforcer-plugin.version>
|
||||
<minimal.maven.version>3.3.9</minimal.maven.version>
|
||||
</properties>
|
||||
|
||||
|
||||
<!-- Стартеры -->
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<!-- собираем "жирный" jar-ник-->
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>${maven-enforcer-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<dependencyConvergence/>
|
||||
<requireMavenVersion>
|
||||
<version>${minimal.maven.version}</version>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<executable>true</executable>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1,14 @@
|
||||
package ru.otus;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
//http://localhost:8080/actuator/health
|
||||
|
||||
@SpringBootApplication
|
||||
public class SpringBootDemo {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(SpringBootDemo.class, args);
|
||||
}
|
||||
}
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package ru.otus.commandlinerunners;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.boot.CommandLineRunner;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Arrays;
|
||||
import ru.otus.service.GreetingService;
|
||||
|
||||
|
||||
@Component
|
||||
public class PreparationDev implements CommandLineRunner {
|
||||
private static final Logger logger = LoggerFactory.getLogger(PreparationDev.class);
|
||||
|
||||
private final GreetingService greetingService;
|
||||
|
||||
public PreparationDev(GreetingService greetingService) {
|
||||
this.greetingService = greetingService;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run(String... args) {
|
||||
//args парметры, котрые могут быть переданы в Main
|
||||
var applArgs = Arrays.toString(args);
|
||||
logger.info("DEV mode!!! Что-то настравиваем и подготавливаем, параметры: {} ", applArgs);
|
||||
|
||||
var reply = greetingService.sayHello("Ivan");
|
||||
logger.info("reply:{}", reply);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package ru.otus.configs;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
@ConfigurationProperties(prefix = "application")
|
||||
public class AppProps {
|
||||
|
||||
private String message;
|
||||
private Locale locale;
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public Locale getLocale() {
|
||||
return locale;
|
||||
}
|
||||
|
||||
public void setLocale(Locale locale) {
|
||||
this.locale = locale;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package ru.otus.configs;
|
||||
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
@EnableConfigurationProperties(AppProps.class)
|
||||
public class ApplicationConfig {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package ru.otus.service;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public interface GreetingService {
|
||||
Map<String, String> sayHello(String name);
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package ru.otus.service;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@Service
|
||||
public class GreetingServiceServiceImpl implements GreetingService {
|
||||
|
||||
@Override
|
||||
public Map<String, String> sayHello(String name) {
|
||||
Map<String, String> map = new HashMap<>();
|
||||
map.put(name, "Hello, " + name);
|
||||
return map;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package ru.otus.service;
|
||||
|
||||
import jakarta.annotation.PostConstruct;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.MessageSource;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.otus.configs.AppProps;
|
||||
|
||||
|
||||
@Component
|
||||
public class LocalHello {
|
||||
private static final Logger logger = LoggerFactory.getLogger(LocalHello.class);
|
||||
|
||||
private final MessageSource messageSource;
|
||||
private final AppProps props;
|
||||
private final String message;
|
||||
|
||||
public LocalHello(MessageSource messageSource, AppProps props, @Value("${application.message}") String message) {
|
||||
this.messageSource = messageSource;
|
||||
this.props = props;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
//!!! Вообще, PostConstruct - это плохая практика !!!
|
||||
@PostConstruct
|
||||
public void printHello() {
|
||||
var messageLocalized = messageSource.getMessage("hello.user", new String[]{"Ivan"}, props.getLocale());
|
||||
logger.info("Localization:{}", messageLocalized);
|
||||
|
||||
logger.info("message from props:{}", props.getMessage());
|
||||
logger.info("message:{}", message);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package wrongPackage;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.boot.CommandLineRunner;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
//Этот компонент не будет найден, т.к. нарушена иерархия пакетов
|
||||
@Component
|
||||
public class PreparationUnKnown implements CommandLineRunner {
|
||||
private static final Logger logger = LoggerFactory.getLogger(PreparationUnKnown.class);
|
||||
|
||||
@Override
|
||||
public void run(String... args) throws Exception {
|
||||
logger.info("Это не увидим никогда");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
spring:
|
||||
messages:
|
||||
basename: "i18n/appmessages"
|
||||
encoding: "UTF-8"
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: info, health, beans
|
||||
|
||||
server:
|
||||
port: 8080
|
||||
|
||||
application:
|
||||
message: "Test Props msg"
|
||||
locale: ru_RU
|
||||
@@ -0,0 +1 @@
|
||||
Custom banner...
|
||||
@@ -0,0 +1 @@
|
||||
hello.user="Hello, {0}"!
|
||||
@@ -0,0 +1 @@
|
||||
hello.user="Привет, {0}"!
|
||||
@@ -0,0 +1,13 @@
|
||||
<configuration scan="true" scanPeriod="10 seconds">
|
||||
<jmxConfigurator />
|
||||
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<encoder>
|
||||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<root level="info">
|
||||
<appender-ref ref="STDOUT" />
|
||||
</root>
|
||||
</configuration>
|
||||
Reference in New Issue
Block a user