uk
Feedback
Чашечка Java

Чашечка Java

Відкрити в Telegram

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

Показати більше
8 551
Підписники
+524 години
-87 днів
-2730 день
Архів дописів
When to throw and catch Exception in Java? [Best Practice] Exceptions are one of the confusing and misunderstood topics in Ja
When to throw and catch Exception in Java? [Best Practice] Exceptions are one of the confusing and misunderstood topics in Java, but at the same time, too big to ignore. In fact, good knowledge of Errors and Exception handling practices is one criterion, which differentiates a good Java developer from an average one. So what is confusing about Exception in Java? Well, many things like When to throw Exception or When to catch Exception, When to use checked exception or unchecked exception, should we catch errors like java.lang.OutOfMemoryError? Shall I use an error code instead of an Exception and a lot more? Well, I cannot answer all these questions in one post, so I will pick the first one when to catch or throw any Exception in Java. Java Interview questions and tutorials Read: http://www.java67.com/2021/06/when-to-throw-and-catch-exception-in.html

[Solved] Caused by: java.sql.SQLSyntaxErrorException: ORA-01722: invalid number in Java and Oracle Hello guys, if you are get
[Solved] Caused by: java.sql.SQLSyntaxErrorException: ORA-01722: invalid number in Java and Oracle Hello guys, if you are getting below error in your Java program and wondering how to solve this or just stuck then you have come to the right place. In this article, I will explain to you what causes the " java.sql.SQLSyntaxErrorException: ORA-01722: invalid number" error when you connect to an Oracle database from a Java program and how you can solve it. But, first of all, let's take a look at the stack trace of this error which looks like below: Java Interview questions and tutorials Read: http://www.java67.com/2021/06/caused-by-java-01722-invalisqlsqlsyntaxerrorexception-ORA-01722-invalid-number.html

Осенние конференции JUG Ru Group: онлайн и офлайн, Москва и Питер Как проводить IT-конференции в 2022-м: в офлайне или онлайне? Одни люди ратуют за живое общение, а другие уже полюбили возможность подключиться из любой точки планеты. Мы решили пойти навстречу всем, и получился нестандартный конференционный формат: — Первая пара дней проходит в онлайне, спикеры выступают удалённо. А позже ещё один день происходит старый добрый офлайн на конференционной площадке. — У тех, кто не готов добраться до этой площадки, есть возможность и ко второй части подключиться по интернету. Пожалуй, так упустишь часть атмосферы, но доклады увидишь. Впервые опробовали это весной, а теперь по такому принципу пройдут все конференции нашего осеннего сезона. У первой половины из них офлайн-часть пройдёт в Петербурге, у второй — в Москве. Представляем Хабру даты и подробности. Читать: https://habr.com/ru/post/680164/?utm_campaign=680164

How to call REST API by sending HTTP Request using cURL command in Linux? Example Tutorial The curl or cURL command of Linux
How to call REST API by sending HTTP Request using cURL command in Linux? Example Tutorial The curl or cURL command of Linux is a compelling and versatile command which allows you to send sophisticated HTTP requests right from your Linux command line window. You can use the cURL command to test your RESTful Web Services by sending GET and POST requests, doing authentication, saving a cookie in the file, etc. The curl command is, in fact, the go-to tool for many Java and Spring developers working in web applications and consuming data from the secured RESTful Web Services. Still, you can also use it to test your simple REST Web APIs without security. I have used it many times to check if our Web service is up or not, or is there any error while accessing those services. Java Interview questions and tutorials Read: http://www.java67.com/2017/10/how-to-test-restful-web-services-using.html

Top 50 Microsoft SQL Server Interview Questions with Answers for 1 to 3 Years Experienced Hello guys, if you are preparing fo
Top 50 Microsoft SQL Server Interview Questions with Answers for 1 to 3 Years Experienced Hello guys, if you are preparing for an SQL Server Interview or a Java developer position where SQL Server skills are required and looking for SQL server interview questions then you have come to the right place. In the past, I have shared 10 SQL query Interview questionsand 50 database and SQL questions, and today, I am going to share some SQL Server conceptual and theory questions which are very popular in interviews. The list not only includes Microsoft SQL server related questions, like isnull vs coalesce but also many general SQL and database design concepts like referential integrity, joins, normalization, window functions, etc. Java Interview questions and tutorials Read: http://www.java67.com/2019/08/microsoft-sql-server-phone-interview-questions-answers.html

How to use DROP command to remove tables in Oracle, MySQL and SQL Server Hello guys, if you want to learn about DROP command
How to use DROP command to remove tables in Oracle, MySQL and SQL Server Hello guys, if you want to learn about DROP command in SQL then you have come to the right place. Earlier, I have shared the best free SQL and Database coursesand several tutorials to learn SELECT, GROUP BY, and other important commands, and in this article, I will show you to use the DROP command in SQL. DROP is one of the basic SQL commands, which is used to DROP database objects. Since it's part of ANSI SQL, the DROP command is supported by all major database vendors, including Oracle, MySQL, and Microsoft SQL Server. A SQL DROP TABLE statement is used to delete a table definition and all data from a table, but DROP can also be used to drop index, view, trigger, or any other database object. Java Interview questions and tutorials Read: http://www.java67.com/2021/04/sql-drop-command-example-mysql-.html

Difference between Correlated Subquery vs Non-Correlated (Self Contained) subquery in SQL - Example If you are wondering what
Difference between Correlated Subquery vs Non-Correlated (Self Contained) subquery in SQL - Example If you are wondering what is correlated and non-correlated subqueries in SQL and looking to understand the difference between them then you have come to the right place. Earlier, I have shared free SQL and Database courses and today, I am going to talk about one of the common SQL concepts of subqueries, a query inside another query. There are two types of subqueries in SQL, correlated subquery and self-contained subquery, also known as nested, non-correlated, uncorrelated, or simply a subquery. The main difference between them is, self-contained (non-correlated) subqueries are independent of the outer query, whereas correlated subquery has a reference to an element from the table in the outer query. Java Interview questions and tutorials Read: http://www.java67.com/2019/09/difference-between-correlated-subquery.html

Difference between ISNULL() and COALESCE() function in SQL? Example Even though both ISNULL() and COALESCE() function provide
Difference between ISNULL() and COALESCE() function in SQL? Example Even though both ISNULL() and COALESCE() function provides alternate values to NULL in T-SQL and Microsoft SQL Server e.g. replacing NULL values with empty String, there are some key differences between them, which is often the topic of SQL Server interview. In this article, you will not only learn the answer to this question but also learn how to use COALESCE and ISNULL function properly. One of the main differences between them is that  COALESCE() is a standard SQL function but ISNULL() is Microsoft SQL Server-specific, which means it's not guaranteed to be supported by other database vendors like Oracle, MySQL, or PostgreSQL. Java Interview questions and tutorials Read: http://www.java67.com/2017/04/4-differences-between-isnull-and-coalesce-in-sql-server.html

How to Fix java.sql.BatchUpdateException: Error converting data type float to numeric - Java + SQL Server This error can come
How to Fix java.sql.BatchUpdateException: Error converting data type float to numeric - Java + SQL Server This error can come if you are inserting or updating a NUMERIC column in the Microsoft SQL Server database from a Java Program using the executeUpdate()method, I mean executing a batch update query. It could also happen if you are calling a stored procedure and passing a float value corresponding to a NUMERIC column, and the value happened to be out-of-range like generating "Arithmetic overflow error converting numeric to data type numeric"on the SQL Server end. For example, if your column is defined as NUMERIC (6,2) the maximum value it can represent is 9999.99, not 999999.99. Java Interview questions and tutorials Read: http://www.java67.com/2019/04/javasqlbatchupdateexception-error-converting-data-type-float-to-numeric.html

Top 20 Docker Interview Questions with Answers for Beginners and Experienced Developers Hello guys, if you are preparing for
Top 20 Docker Interview Questions with Answers for Beginners and Experienced Developers Hello guys, if you are preparing for a Java developer interview, a DevOps engineer interview or any software developer interview, one tool which should pay most attention is Docker. It's a container tool which allows you to package and deploy your application in cloud. Docker has many benefits as it not only standardized packaging and deployment but works nicely with Kubernetes which takes the scalability and automatic restart of your application. These are just a couple of benefits but because of all these, Docker has become an essential tool for every programmer and developer and that's why they are also quite important for interviews. Java Interview questions and tutorials Read: http://www.java67.com/2022/08/docker-interview-questions-with-answers.html

Как получать сущности со связями в Spring Rest контроллере Туториал для начинающих разработчиков Spring, в котором рассказывается, почему в REST сервисе может не заработать самый обычный метод findById() и как это можно исправить. Читать: https://habr.com/ru/post/679722/?utm_campaign=679722

Java News Roundup: Helidon 3.0, GraalVM 22.2, IntelliJ IDEA 2022.2, Vert.x Virtual Threads This week's Java roundup for July
Java News Roundup: Helidon 3.0, GraalVM 22.2, IntelliJ IDEA 2022.2, Vert.x Virtual Threads This week's Java roundup for July 25th, 2022, features news from OpenJDK, JDK 19, JDK 20, Spring project updates, Helidon 3.0, GraalVM 22.2, Quarkus 2.11.1 and 2.10.4, Micronaut 3.5.4, Eclipse Vert.x virtual threads incubator, Jakarta EE 10 updates, IntelliJ IDEA 2022.2, JUnit 5.9.0, Apache Software Foundation project updates and Multik 0.2.0. By Michael Redlich Read: https://www.infoq.com/news/2022/08/java-news-roundup-jul25-2022/

Jetpack Compose 1.2 Includes Lazy Grids, Support for Google Fonts, and More Jetpack Compose 1.2 stabilizes a number of featur
Jetpack Compose 1.2 Includes Lazy Grids, Support for Google Fonts, and More Jetpack Compose 1.2 stabilizes a number of features, including lazy grids, nested scroll, easing curve for animations, and more. In addition, it brings several new experimental features, like custom layouts and downloadable fonts, and fixes many issues. By Sergio De Simone Read: https://www.infoq.com/news/2022/07/jetpack-compose-1-2/

How to test a Spring Boot application? @SpringBootTest Annotation Example Unit testing and Integration testing are two skills
How to test a Spring Boot application? @SpringBootTest Annotation Example Unit testing and Integration testing are two skills which separates a normal developer from a professional Java developer and when it comes to testing Spring applications many Java developer doesn't really know how to do that. If you are new to Java and Spring development but keen to learn Unit testing both Java and Spring Boot application then you have come to the right place. Earlier, I have shared 20 Spring Boot testing questionsand in this article, I will teach you how to test your Spring Boot application using both unit testing and integration testing. Java Interview questions and tutorials Read: http://www.java67.com/2022/07/how-to-test-spring-boot-application.html

Дюк, вынеси мусор! — Часть 4 С тех пор, как мы рассматривали принципы работы различных сборщиков мусора (раз, два, три), входящих в состав виртуальной машины Java HotSpot, прошел уже не один год. За это время было разработано еще несколько сборщиков, один из которых — ZGC — достаточно давно вышел из разряда экспериментальных и начиная с 15-й версии OpenJDK может похвастаться статусом production ready. Раз есть такой хороший повод, давайте продолжим цикл, взяв сегодня на рассмотрение этот сборщик. А давайте Читать: https://habr.com/ru/post/680038/?utm_campaign=680038

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

Spring security: без фильтров по умолчанию, как и что из этого получится Коротко, статья как напоминание мне, а может и вам, как быстро начать настраивать цепочки безопасности, что уже висит подключенным и как выключить все, что не нужно, быстро с нуля начать писать без обвесок, больше контроля и понимания. Читать: https://habr.com/ru/post/680052/?utm_campaign=680052

Статический анализ кода в современной Java-разработке Сегодня я хочу затронуть тему, которая будет полезна как Java-разработчикам, так и начинающим тех- и тимлидам. Я расскажу о том, как добиться высокого качества кода на вашем Java проекте и перестать волноваться о стилях кодирования. Если вы идёте по пути подготовки развесистых страничек на wiki по стилям кодирования и правилам оформления кода, то это дурно пахнет. Есть другой более надёжный способ, как защитить вашу кодовую базу и добиться полного соблюдения всех принятых стандартов и соглашений. И это, конечно же, статический анализ кода. Далее я покажу своё видение того, какие инструменты и в какой конфигурации должны применяться на Java проектах, а особенно в микросервисах. Читать: https://habr.com/ru/post/680018/?utm_campaign=680018

Top 20 Golang Interview Questions with Answers Hello guys, if you are preparing for Golang Developer Job interview and lookin
Top 20 Golang Interview Questions with Answers Hello guys, if you are preparing for Golang Developer Job interview and looking for frequnetly asked Golang Interview questions then you have come to the right place. Golang is one of the modern and in-demand programming language from Google and more and more companies have started using Golang for their flagship project like ByteDance is using Goalng for TikTok and their other projects. In the past, I have shared best Golang courses  as well as free Goalng courses and in this article, I am going to share 20 common Golang Interview Questions with Answers. These questions covers essential Golang concepts which every Golang developer should be familiar with. Java Interview questions and tutorials Read: http://www.java67.com/2022/07/golang-interview-questions-answers.html

Подборка актуальных вакансийQA Automation Engineer Где: Москва, можно удалённо Опыт: от 1 года — Java Developer Где: Москва, можно удалённо Опыт: от 1 года — Инженер в команду Clickstream Где: Москва, можно удалённо Опыт: от 3 лет — Senior Android Developer Где: Москва, можно удалённо Опыт: от 3 лет — Java Developer Где: Москва, можно удалённо Опыт: от 3 лет — CTO Где: Москва Опыт: от 6 лет #вакансии #работа