main
Last change
on this file since ab952ab was ae042f4, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 2 years ago |
Configured spring security, changed spring version
|
-
Property mode
set to
100644
|
File size:
629 bytes
|
Line | |
---|
1 | package com.example.autopartz;
|
---|
2 |
|
---|
3 | import org.springframework.boot.SpringApplication;
|
---|
4 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
---|
5 | import org.springframework.context.annotation.Bean;
|
---|
6 | import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
---|
7 | import org.springframework.security.crypto.password.PasswordEncoder;
|
---|
8 |
|
---|
9 | @SpringBootApplication
|
---|
10 | public class AutoPartzApplication {
|
---|
11 |
|
---|
12 | public static void main(String[] args) {
|
---|
13 | SpringApplication.run(AutoPartzApplication.class, args);
|
---|
14 | }
|
---|
15 | @Bean
|
---|
16 | PasswordEncoder passwordEncoder() {
|
---|
17 | return new BCryptPasswordEncoder(10);
|
---|
18 | }
|
---|
19 |
|
---|
20 |
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.