Petri Kainulainen

?

Channel Reputation Rank

#366
?

Activity Status

Alive

last updated

According to the data and stats that were collected, 'Petri Kainulainen' channel has an excellent rank. In addition 'Petri Kainulainen' includes a significant share of images in comparison to the text content. The channel mostly uses long articles along with sentence constructions of the intermediate readability level, which is a result that may indicate difficult texts on the channel, probably due to a big amount of industrial or scientific terms.

About 'Petri Kainulainen' Channel

Developing Software With Passion

? Updates History Monthly Yearly
? Content Ratio
? Average Article Length

Long articles are widely used on 'Petri Kainulainen' as elaborated and interesting content can help the channel to reach a high number of subscribers. In addition there are a few medium length articles.

short

long

? Readability Level

Intermediate readability level is common for 'Petri Kainulainen' articles as it addresses the matters that demand certain level of education to be understood. Sometimes the channel gets even more difficult by issuing pieces of advanced readability level (there are just a few of them). In addition the channel contains materials of a basic readability level, making up more than a quarter of its content.

advanced

basic

? Sentiment Analysis

Positive emotional expressions prevail throughout the texts: they may include favorable reviews, appreciation or praise in regard to the subjects addressed on the channel. However, the channel also contains some rather negative or critical records that make up just a small amount of all its content.

positive

negative

Recent News

Unfortunately Petri Kainulainen has no news yet.

But you may check out related channels listed below.

Adding Social Sign In to a Spring MVC Web Application: Unit Testing

[...] , RequestAttributes.SCOPE_SESSION);     } } We can see two things from the source code of the ProviderSignInUtils class: The getConnection() method gets a ProviderSignInAttempt [...]

Creating a REST API with Spring Boot and MongoDB

[...] the title and description of the entity if valid values are given as method parameters. The source code of the Todo class looks as follows: Additional Reading: Item 2: Consider a builder when faced [...]

Spring from the Trenches: Using Null Values in DbUnit Datasets

[...] CRUD operations for that entity. Our entity class is called Todo and the relevant part of its source code looks as follows: You can get the full source code of the Todo class from Github. Also, we [...]

Using Asciidoctor with Spring: Rendering Asciidoc Documents with Spring MVC

[...] is responsible of starting and shutting down the Spring WebApplicationContext. The source code of the WebAppConfig class looks as follows (Sitemesh configuration is highlighted): If you want [...]

Creating Code Coverage Reports for Unit And Integration Tests with The JaCoCo Ma...

[...] reports must be created in separate directories. In other words, the code coverage report for unit tests must be created into a different directory than the code coverage report for integration tests. [...]

Writing Clean Tests – To Verify Or Not To Verify

[...] When we write unit tests that use mock objects, we follow these steps: Configure the behavior of our mock objects. [...]

Unit Testing of Spring MVC Controllers: REST API

[...] Spring MVC provides an easy way to create REST APIs. However, writing comprehensive and fast unit tests for these APIs has been troublesome. The release of the Spring MVC Test framework gave us the [...]

Writing Tests for Data Access Code – Unit Tests Are Waste

[...] A few years ago I was one of those developers who write unit tests for my data access code. I was testing everything in isolation, and I was pretty pleased with [...]

Adding Social Sign In to a Spring MVC Web Application: Integration Testing

[...] our example application. Spring MVC Test Tutorial describes how we can write both unit and integration tests by using the Spring MVC Test framework. Spring Data JPA Tutorial: Integration Testing [...]

Spring from the Trenches: Resetting Auto Increment Columns Before Each Test Meth...

[...] When we are writing integration tests for a function that saves information to the database, we have to verify that the correct [...]

Writing Tests for Data Access Code – Green Build Is Not Good Enough

[...] The first thing that we have to do before we can start writing integration tests for our data access code is to decide how we will configure our test cases. We have two [...]

Writing Tests for Data Access Code – Don’t Forget the Database

[...] Real Database Schema The second part of this series taught us that we should configure our integration tests by using the same configuration which is used by our application. It also taught us that is [...]

Getting Started with Gradle: Dependency Management

[...] thefollowing: The build script of the example application must use the Maven central repository. The example application must write the received [...]

Using jOOQ with Spring: Configuration

[...] , read section 1.2 of the Spring Framework Reference Documentation. The reason why this example application uses Spring Framework 3.2.6 instead of 4.0 is that at the moment spring-test-dbunit isn& [...]

Adding Social Sign In to a Spring MVC Web Application: Configuration

[...] assumes that you have already created the Facebook and Twitter application used by the example application. You can create these applications by following these links: Facebook Developers Twitter [...]

Adding Social Sign In to a Spring MVC Web Application: Registration and Login

[...] ? It is time to get our hands dirty and answer to these questions. The requirements of our example application are: It must be possible to create a “traditional” user account. This means [...]

Writing Clean Tests – Divide and Conquer

[...] A good unit test should fail for only one reason. This means that a proper unit test tests only one logical concept. If we want to write clean tests, we have to identify those [...]

Turning Assertions Into a Domain-Specific Language

[...] order to understand what is wrong with using the standard JUnit assertions, we have to analyze a unit test which uses them. We can write a unit test which ensures that the construction of new Person [...]

Three Reasons Why We Should Not Use Inheritance In Our Tests

[...] assertEquals(expectedDescription, actual.getDescription());     } } Now we can write a unit test for the create() method of the TodoCrudServiceImpl class. The source code of our test class [...]

Writing Clean Tests – Naming Matters

[...] tested method]_[expected input / tested state]_[expected behavior]. For example, if we write a unit test for a registerNewUserAccount() method which throws an exception when the given email address is [...]

Screencast: Integration Testing of Spring Data JPA Repositories

[...] I think that the integration testing of Spring Data Repositories is an important and often neglected topic. That is why I [...]

Spring Data JPA Tutorial: Integration Testing

Spring Data JPA makes the creation of JPA repositories extremely easy because in most cases we only have to create a special repository interface. The [...]

Spring from the Trenches: Using Environment Specific Cron Expressions with the @...

[...] over the invocation of the scheduled tasks. That is [...] Related Stories Screencast: Integration Testing of Spring Data JPA Repositories Spring Data JPA Tutorial: Integration Testing Spring Data [...]

Screencast: Unit Testing of Spring MVC Controllers – Configuration

[...] ;   Related Stories Unit Testing of Spring MVC Controllers: Configuration Screencast: Integration Testing of Spring Data JPA Repositories Integration Testing of Spring MVC Applications: Migrating [...]

Using jOOQ with Spring: Code Generation

[...] is divided into three important phases which are described in the following: Read the database configuration from the profile specific configuration file. We want to use the same configuration file [...]

Adding Social Sign In to a Spring MVC Web Application: Configuration

[...] the properties file. The contents of the application.properties file looks as follows: #Database Configuration db.driver=com.mysql.jdbc.Driver db.url=jdbc:mysql://localhost:3306/socialtwitter db. [...]

Using jOOQ with Spring: Configuration

[...] ’t use in-memory database). The application.properties file looks as follows: #Database Configuration db.driver=org.h2.Driver db.url=jdbc:h2:mem:jooq;DB_CLOSE_ON_EXIT=FALSE; [...]

?Key Phrases
Adding Social Sign In to a Spring MVC Web Application: Unit Testing

[...] , RequestAttributes.SCOPE_SESSION);     } } We can see two things from the source code of the ProviderSignInUtils class: The getConnection() method gets a ProviderSignInAttempt [...]

Creating a REST API with Spring Boot and MongoDB

[...] the title and description of the entity if valid values are given as method parameters. The source code of the Todo class looks as follows: Additional Reading: Item 2: Consider a builder when faced [...]

Spring from the Trenches: Using Null Values in DbUnit Datasets

[...] CRUD operations for that entity. Our entity class is called Todo and the relevant part of its source code looks as follows: You can get the full source code of the Todo class from Github. Also, we [...]

Using Asciidoctor with Spring: Rendering Asciidoc Documents with Spring MVC

[...] is responsible of starting and shutting down the Spring WebApplicationContext. The source code of the WebAppConfig class looks as follows (Sitemesh configuration is highlighted): If you want [...]

Related channels