es
Feedback
Чашечка Java

Чашечка Java

Ir al canal en Telegram

Лучшие материалы по Java на русском и английском Разместить рекламу: @tproger_sales_bot Правила общения: https://tprg.ru/rules Другие каналы: @tproger_channels

Mostrar más
8 550
Suscriptores
-424 horas
-137 días
-3230 días
Archivo de publicaciones
How to convert String to Integer SQL and Database? MySQL, Oracle, SQL server and PostgreSQL Example Hello guys, if you are wo
How to convert String to Integer SQL and Database? MySQL, Oracle, SQL server and PostgreSQL Example Hello guys, if you are wondering how to convert VARCHAR to String in SQL then you are at the right place. In this article, we will cover various techniques to convert String to Integer in all databases - MySQL, Oracle, SQL server and PostgreSQL. To perform tasks or correlations or change between information in a SQL Server data set, the SQL information kinds of those values should coordinate. At the point when the SQL information types are unique, they will go through a cycle called type-projecting. The transformation of SQL information types, in this cycle, can be implied or unequivocal. Java Interview questions and tutorials Read: http://www.java67.com/2022/08/how-to-convert-string-to-integer-sql.html

Глубокое погружение в Java Memory Model Я провел в изучении JMM много часов и теперь делюсь с вами знаниями в простой и понятной форме. В этой статье мы подробно разберем Java Memory Model (JMM) и применим полученные знания на практике. Да, в интернете накопилось достаточно много информации про JMM/happens-before, и, кажется, что очередную статью про такую заезженную тему можно пропускать мимо. Однако я постараюсь дать вам намного большее и глубокое понимание JMM, чем большинство информации в интернете. После прочтения этой статьи вы будете уверенно рассуждать о таких вещах как memory ordering, data race и happens-before. JMM — сложная тема и не стоит верить мне на слово, поэтому большинство моих утверждений подтверждается цитатами из спеки, дизассемблером и jcstress тестами. Читать: https://habr.com/ru/post/685518/?utm_campaign=685518

Платформа кадрового электронного документооборота HRLink ищет тимлида Стек разработки проекта: Java 11, Kafka, PostgreSQL, Angular, Git, Jira, Confluence. Компания предлагает: — Интересные бизнесовые задачи; — Технические задачи на масштабирование и оптимизацию производительности; — Применение хороших практик; — Время на закрытие технического долга; — Возможность влиять на процессы внутри компании; — Уровень дохода соответсвующий опыту кандидата и оформление по ТК в штат компании; — Гибкую систему корпоративных бонусов; — Возможность работать удаленно или в офисе в Санкт — Петербурге, а так же выбрать гибрид. На вакансию также рассматриваются кандидаты без опыта руководителя. Если хотите стать частью команды HRLink — присылайте резюме: @jeanntuanet Это #партнёрский пост

Под капотом у Клуба инновационных решений В предыдущей статье мы рассказали об идеях лежащих в основе наше Клуба инновационных решений, также известного как Социальная сеть для поиска инновационных решений, также известного как INnovationNETwork. В этой статьей мы расскажем о программной реализации нашего Клуба, а точнее о программной реализации его функционального прототипа, включая: зачем нам понадобился прототип, что у него под капотом, на чем он работает, какие программные средства и компоненты мы используем для его разработки, какие средства мы используем для организации совместной работы. Читать: https://habr.com/ru/post/685448/?utm_campaign=685448

How to use EXISTS and NOT EXISTS in SQL? Microsoft SQL Server Example Hello guys, if you are wondering how to use the IF EXIS
How to use EXISTS and NOT EXISTS in SQL? Microsoft SQL Server Example Hello guys, if you are wondering how to use the IF EXISTS and NOT EXISTS in SQL then you are at the right place. Earlier, I have shared how to use GROUP BY, WHERE, and HAVING clause and in this tutorial I will share how to use exists and not exists clause in SQL. The IF EXISTS and NOT EXISTS commands in T-SQL are covered in depth in this article. When comparing data sets using subqueries, it also illustrates why EXISTS should be preferred over IN and NOT EXISTS over NOT IN. If you don't know, EXISTS is a logical operator in SQL that is used to check if rows in a database exist. If the subquery produces one or more records, it returns TRUE. The NOT EXISTS operator in SQL is the polar opposite of the EXISTS operator, and it is fulfilled if the subquery returns no results. Java Interview questions and tutorials Read: http://www.java67.com/2022/05/sql-tutorial-exists-and-not-exists.html

5 Essential Spring Cloud Annotations Java Programmer should Learn Hello guys, If you are developing a Java application for Cl
5 Essential Spring Cloud Annotations Java Programmer should Learn Hello guys, If you are developing a Java application for Cloud, then you should learn Spring Cloud, a great framework and extension of the popular Spring framework, which can help you to develop a cloud-native Java application. Spring Cloud provides several necessary services required for a cloud-based Java application and Microservices like configuration management, service discovery, circuit breakers, intelligent routing, micro-proxy, a control bus, one-time tokens, global locks, leadership election, distributed sessions, cluster state, etc. Java Interview questions and tutorials Read: http://www.java67.com/2018/12/top-5-spring-cloud-annotations-for-java.html

rate limiter (sliding window) Наверняка многие бекенд программисты сталкивались с задачей ограничением запросов к некоторому источнику данных. Существует множество решений этой проблемы: 1) хранить историю во внешнем источнике данных, как redis. Для вычисления возможности отправить запрос, нужно каждый раз ходить в этот источник данных, что может быть непозволительно в некоторых сферах (так как существенно увеличивается время обработки запроса) 2) не париться с limiter и анализировать ответ от внешнего источника данных и на основе его ответов, принимать решение когда и сколько запросов можно отправить (но такие ответы есть не у каждого сервиса и существует вероятность, что будут отправлены лишние запросы, что может привести к бану) 3) хранить историю запросов локально, но использовать алгоритм leaked bucket, но это не позволяет накидать несколько запросов и ждать 4) хранить историю запросов локально, но использовать алгоритм sliding window, можно накидать запросов и ждать какое-то известное время О реализации sliding window для java пойдет речь в этой статье Читать: https://habr.com/ru/post/685306/?utm_campaign=685306

What is Normalization in SQL? 1NF, 2nd NF, and 3rd NF Example Tutorial What is Normalization? Normalization is the cycle to t
What is Normalization in SQL? 1NF, 2nd NF, and 3rd NF Example Tutorial What is Normalization? Normalization is the cycle to take out information overt repetitiveness and improve information uprightness in the table. Normalization likewise assists with coordinating the information in the data set. It is a multi-step process that sets the information into even structure and eliminates the copied information from the relational tables. Normalization coordinates the segments and tables of a data set to guarantee that data set integrity constraints appropriately execute their conditions. It is an orderly method of deteriorating tables to take out information overt repetitiveness (redundant) and unfortunate qualities like Insertion, Update, and Deletion anomalies. Java Interview questions and tutorials Read: http://www.java67.com/2022/08/what-is-normalization-in-sql-1nf-2nd-nf.html

VK Team проводит Weekend Offer, чтобы найти Java-разработчиков в команду VK Звонков Всё пройдёт в 3 этапа: первые встречи, вы
VK Team проводит Weekend Offer, чтобы найти Java-разработчиков в команду VK Звонков Всё пройдёт в 3 этапа: первые встречи, выступление руководителей проекта и финальные технические интервью. От вас требуются: — Опыт бэкенд-разработки на Java; — Способность собирать требования к задаче и самостоятельно принимать решение по их реализации; — Знание сетевых стеков и протоколов передачи данных; — Понимание классических алгоритмов и структур данных; — Умение писать читаемый, поддерживаемый и легко масштабируемый код. Успевайте подать заявку: https://vk.com/javaoffer Это #партнёрский пост

Какими должны быть курсы по программированию На основе опыта создания курса обучения до уровня уверенный Middle (средний уровень) с использованием языка Java, а так же пользуясь многолетним опытом разработки, в данном тексте предпринята попытка обоснования необходимости создания качественных курсов, ориентированных на существенно более высокий уровень разработчиков, нежели сегодня выпускают большинство известных фирм. Для этого рассматриваются плюсы и минусы двух подходов: быстрые и простые курсы длительностью около полугода против основательных и качественных курсов длительностью около года-полутора. Читать: https://habr.com/ru/post/685238/?utm_campaign=685238

What is @Bean Annotation in Spring Framework? Example Tutorial Hello Java programmers, if you are wondering what is @Bean ann
What is @Bean Annotation in Spring Framework? Example Tutorial Hello Java programmers, if you are wondering what is @Bean annotation in Spring Framework, what is the purpose, and how to use it then you have come to the right place. Earlier, I have shared the best free Spring core and spring MVC courses and In this tutorial, you will learn the most frequently used Spring annotations @Bean, which are used to define different types of beans. Beans are the fundamentals of Spring framework, they represent the POJO class which is created and managed by Spring Framework. Whole Spring framework is about beans and their relationships. Java Interview questions and tutorials Read: http://www.java67.com/2021/10/pring-bean-example-what-does-bean-annotation-does.html

Spring HelloWorld Example using Java Annotations and Autowiring Spring framework has gone a couple of releases since I last s
Spring HelloWorld Example using Java Annotations and Autowiring Spring framework has gone a couple of releases since I last share the Spring hello world example with XML configuration. In this article, I am going to explain to you how to create a Spring hello world example with Spring 4.2 release and by using Annotation for dependency injection and autowiring. So no more XML files to specify bean dependencies. It's a simple program that shows how you can use the Spring framework to create Services that are loosely coupled. The example will show you the basic concept of dependency injection by creating a simple Java application that greets the user. Java Interview questions and tutorials Read: http://www.java67.com/2019/10/spring-helloworld-example-in-Java-eclipse.html

What is @Conditional annotation in Spring Framework? Example Tutorial Hello guys, if you want to know what is @Conditional an
What is @Conditional annotation in Spring Framework? Example Tutorial Hello guys, if you want to know what is @Conditional annotation in Spring Framework and Spring Boot, and how to use it then you have come to the right place. Earlier, I have shared best free courses to learn Spring Framework and Spring Boot, and in this article, you'll learn what they are, how to use them with practical examples. Spring 4.0 introduced the @Conditional annotation that is used for conditional checking for bean registration. This annotation offers more support than the @Profile annotation provided by the spring framework and most of the Spring Boot matching is attributed to this annotation. It allows you to setup features based upon certain conditions like presence of a class in classparth or a JAR File which is how Spring Boot Auto-configuration works. Java Interview questions and tutorials Read: http://www.java67.com/2021/09/conditional-annotations-in-spring-example-tutorial.html

Java News Roundup: JReleaser 1.2, Spring Batch, PrimeFaces, Quarkus, JobRunr, Apache Beam It was very quiet for Java news dur
Java News Roundup: JReleaser 1.2, Spring Batch, PrimeFaces, Quarkus, JobRunr, Apache Beam It was very quiet for Java news during the week of August 22nd, 2022 featuring news from JDK 19, JDK 20, Spring Batch 5.0.0-M5, Quarkus 2.11.3, JReleaser 1.2.0, PrimeFaces 12.0.0-M3, JobRunr 5.1.8, Apache Beam 2.14.0 and Apache Johnzon 1.2.19. By Michael Redlich Read: https://www.infoq.com/news/2022/08/java-news-roundup-aug22-2022/

Article: Java Champion James Ward on the State of Java and JVM Languages James Ward is a Java Champion and Google’s Kotlin Pr
Article: Java Champion James Ward on the State of Java and JVM Languages James Ward is a Java Champion and Google’s Kotlin Product Manager. In a podcast, Ward agreed that “people are still trapped in the Java world” and called default mutability in Java the “trillion-dollar mistake”. In this interview, he speaks about the state of Java, JVM languages, mutability, and functional programming. By Karsten Silz Read: https://www.infoq.com/articles/james-ward-java-jvm-languages/

Presentation: Level Up Your Java Performance with TornadoVM Juan Fumero overviews the TornadoVM project, a parallel programmi
Presentation: Level Up Your Java Performance with TornadoVM Juan Fumero overviews the TornadoVM project, a parallel programming framework, and a Virtual Machine for transparently offloading Java programs onto GPUs and FPGAs. By Juan Fumero Read: https://www.infoq.com/presentations/java-performance-tornadovm/

Difference between @Component, @Service, and @Repository Spring Annotations - Java Hello guys if you are wondering what is th
Difference between @Component, @Service, and @Repository Spring Annotations - Java Hello guys if you are wondering what is the difference between @Component, @Service, and @Reposistory annotation in Spring Framework then you have come to the right place. In the past, I have shared 15 Spring Boot Interview Questions and 30 Spring MVC questions and in this article, I am going to answer the fundamental and popular Spring questions about @Component, @Service, and @Repository annotation, but before we go into differences, let's understand the similarity first. All three of them are used to make a Java class a Spring bean, something which is managed by Spring Framework. Java Interview questions and tutorials Read: http://www.java67.com/2022/06/difference-between-component-service-repository-in-spring.html

Top Java Blogs Weekly: Best of 36/2022 Best of Top Java Blogs, year 2022, week 36 Read: https://www.topjavablogs.com/news/bes
Top Java Blogs Weekly: Best of 36/2022 Best of Top Java Blogs, year 2022, week 36 Read: https://www.topjavablogs.com/news/best-of-36-2022

@SpringBootTest integration test Example Java When we talk about spring boot integration testing, we're talking about launchi
@SpringBootTest integration test Example Java When we talk about spring boot integration testing, we're talking about launching an application in ApplicationContext and performing tests. For integration testing, Spring Framework has a specific test module. It's referred to as a spring test. If we're going to utilize spring-boot, we'll need to use spring-boot-starter-test, which uses spring-test and other dependencies inside. We'll look at how to perform integration tests for a Spring Boot application in this post. First of all, let's understand what integration testing is and what to test as part of integration testing in Spring. Java Interview questions and tutorials Read: http://www.java67.com/2022/08/springboottest-integration-test-example.html

How to use lsof command in Linux? Example Tutorial Hello guys, If you want to learn how to use lsof command in Linux then you
How to use lsof command in Linux? Example Tutorial Hello guys, If you want to learn how to use lsof command in Linux then you have come to the right place. In the last few article, I talk about find, grep, mailx, crontable and du command in Linux and in this article I am going to talk about another useful Linux command, the lsof command. The lsof  command lists open files and that's why its named lsof. This command is very important for server side developer and IT support people who need to check which file is held by which process and find the deleted files which are hogging memory etc. It act as a useful debugging and troubleshooting tool in Linux. Java Interview questions and tutorials Read: http://www.java67.com/2020/07/10-examples-of-lsof-command-in-linux.html