Skip to content

Commit 96aac7f

Browse files
Ranga KaranamRanga Karanam
authored andcommitted
Thank You for Choosing to Learn from in28Minutes
1 parent 57be774 commit 96aac7f

File tree

57 files changed

+74
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+74
-155
lines changed

01.Spring-Boot-Introduction-In-10-Steps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.0.0.BUILD-SNAPSHOT</version>
17+
<version>2.0.0.RELEASE</version>
1818
<relativePath/> <!-- lookup parent from repository -->
1919
</parent>
2020

01.Spring-Boot-Introduction-In-10-Steps/readme.md

Lines changed: 2 additions & 2 deletions
-6 KB
Binary file not shown.

02.Spring-Boot-Web-Application/README.md

Lines changed: 8 additions & 35 deletions

02.Spring-Boot-Web-Application/Step23.md

Lines changed: 4 additions & 4 deletions

02.Spring-Boot-Web-Application/Step25.md

Lines changed: 3 additions & 3 deletions

02.Spring-Boot-Web-Application/Step26.md

Lines changed: 1 addition & 1 deletion

02.Spring-Boot-Web-Application/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
<artifactId>spring-boot-starter-web</artifactId>
3131
</dependency>
3232

33-
<dependency>
33+
<!--<dependency>
3434
<groupId>org.springframework.boot</groupId>
3535
<artifactId>spring-boot-starter-security</artifactId>
36-
</dependency>
36+
</dependency>-->
3737

3838
<dependency>
3939
<groupId>javax.servlet</groupId>
-6 KB
Binary file not shown.

02.Spring-Boot-Web-Application/src/main/java/com/in28minutes/springboot/web/security/SecurityConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter{
1212
@Autowired
1313
public void configureGlobalSecurity(AuthenticationManagerBuilder auth)
1414
throws Exception {
15-
auth.inMemoryAuthentication().withUser("in28Minutes").password("dummy")
15+
auth.inMemoryAuthentication().passwordEncoder(org.springframework.security.crypto.password.NoOpPasswordEncoder.getInstance()).withUser("in28Minutes").password("dummy")
1616
.roles("USER", "ADMIN");
1717
}
1818

0 commit comments

Comments
 (0)