Posts by Isaque • 306 points
11 posts
-
1
votes1
answer52
viewsQ: Custom Authentication with Spring Security
How do I make a custom login and password authentication using Spring Security? The goal is to verify the login and password in the database.
spring-securityasked Isaque 306 -
2
votes1
answer108
viewsA: Authentication Spring Security
To solve the problem I had to use the class Websecurityconfigureradapter. Follows how the project authentication class looked in a simple way. import org.springframework.context.annotation.Bean;…
-
3
votes1
answer108
viewsQ: Authentication Spring Security
PROBLEM How do I have spring security redirect to my project’s custom page? import org.springframework.context.annotation.Bean; import…
-
2
votes1
answer106
viewsQ: Do not access image by url
How do I pass an image to the component img without the user being able to copy the url of the image and access the file by browser? <img…
-
1
votes1
answer40
viewsA: Can’t find the index page
If you are using Tomcat with JSP you will have to put this dependency in pom.xml <dependency> <groupId>org.apache.tomcat.embed</groupId>…
spring-bootanswered Isaque 306 -
2
votes1
answer1259
viewsQ: DIV side by side
How do I place the div gallery on the right side of the div description? HTML <!-- language: lang-html --> <div class="row"> <div class="col-md-10"> <div class="projeto">…
-
1
votes1
answer662
viewsQ: Spring boot test - Junit
How do I resolve this problem and run the Junit test on Spring boot? @RunWith(SpringRunner.class) @SpringBootTest @ActiveProfiles("test") @ContextConfiguration(classes = { CategoriaTest.class,…
-
2
votes1
answer1062
viewsQ: How to put responsive menu to overwrite
Hello, how do I put this responsive menu to appear in front? <header class="box-header"> <div class="box-topo"> <a href="<?php echo base_url();…
-
1
votes1
answer1204
viewsQ: How to set time in bootstrap timepicker
Hello, how do I set up the timepicker for current time or 01:00? $('.timepicker').timepicker({ showInputs: false, defaultTime: '', minuteStep: 1, disableFocus: true, template: 'dropdown',…
-
-1
votes1
answer58
viewsQ: Make alerts on a page with javascript
Hello! I have to take the date that is in the database and make an alert in javascript two days before that date. How do I put this alert in a javascript box on the system?
javascriptasked Isaque 306 -
2
votes1
answer58
viewsQ: Error creating database with Hibernate and Spring MVC
I have a problem running the application. Error... ERROR [org.springframework.web.servlet.DispatcherServlet] (ServerService Thread Pool -- 58) Context initialization failed:…