Questions tagged as 'spring-boot'

1
answer

Compilation error: The method findOne (long) is undefined for the type UserCrud]

to see if someone can help me because I get an error in compiling the edit and delete and I do not know why it is The method findOne(long) is undefined for the type UsuarioCrud ] with root cause java.lang.Error: Unresolved compilation pro...
asked by 03.12.2018 / 13:05
2
answers

maven is responsible for installing all the dependencies?

I'm doing some tests of crud with spring-boot, but in the dependence of ojdbc remains in red, I think it is not being imported.     
asked by 30.04.2017 / 18:08
1
answer

Spring boot security http basic with oauth2 resource server

I am trying to configure a spring boot web application to use the basic http security which will be used for the web pages, and additional I need to implement OAuth2 security for an android application to connect. The problem I have is that t...
asked by 06.06.2018 / 02:44
1
answer

Move bigjar with maven and Spring boot

When I develop a Big-jar with maven I move the jar from the target directory to a test directory using the following segment in the build: <plugin> <artifactId>maven-assembly-plugin</artifactId>...
asked by 16.07.2016 / 20:42
2
answers

How do I solve this error when I perform a crud in spring boot?

I have a problem when I click on update a window appears and there I update the data but instead of updating it I create another record I do not know what to do next I leave the code: Model user class @Entity public class User extends A...
asked by 17.07.2018 / 00:38
0
answers

Run RestTemplate with an external resource on HTTPS

I'm trying to consume a public endpoint that is available in both http and SSL, https://jsonplaceholder.typicode.com/posts/1 which returns a very simple json. I have configured my RestTemplate as follows: @Configuration public class...
asked by 09.03.2018 / 13:43
0
answers

Exception when Inserting in the Oracle DB

The error message is as follows:    2017-06-23 10: 35: 07.365 ERROR 888 --- [nio-2019-exec-1]   o.a.c.c.C. [. [. [/]. [dispatcherServlet]: Servlet.service () for   servlet [dispatcherServlet] in context with path [] threw exception   [Request...
asked by 23.06.2017 / 18:25
2
answers

Grant or restrict permissions to routes through roles in Spring Security in Spring Boot

Good morning everyone, I have an application in Spring Boot in which I implemented Spring Security. I have managed to log in and have access to all the routes once logged in, and also restriction to all routes when the session has not been start...
asked by 04.11.2018 / 20:06
1
answer

SpringBoot error when creating Api Rest

I'm learning how to use SpringBoot and I can not make it work with the classes I created, I'll leave the code in case you can help or pass some link from a tutorial or video that explains it in a simple way the use of the framework. import o...
asked by 23.11.2017 / 12:03
2
answers

Make JPA name the tables in capital letters

I am using JPA with spring boot, hibernate and sql server, it works fine, but I would like the names of the tables and their fields in the database to write them in lowercase, how can I make it uppercase? This is how I have my properties:...
asked by 23.08.2018 / 19:29