Questions tagged as 'spring'

0
answers

Angular and server

I must have done something wrong, because it gave the error again. I created this class: package br.com.netsoft.configuracao.auth; import java.io.IOException; import javax.servlet.FilterChain; import javax.servlet.ServletException; import...
asked by 02.04.2018 / 15:53
0
answers

Cros Origin + Spring + Angular 4/5

I have a problem with my restful service with spring. Even after enabling CORS, I can not connect to my angled application. @CrossOrigin public class UsuarioController { @Autowired UsuarioService service; @RequestMapping(method...
asked by 20.02.2018 / 14:00
0
answers

Quartz Spring Test JUnit

How do you use a Job that is Clustering in Spring? Spring 4.3 Quartz 2.2.3 Job declaration example @PersistJobDataAfterExecution @DisallowConcurrentExecution public class SysEncryptEmailSendSystemJob implements Job{ .. @Override...
asked by 06.03.2018 / 23:24
0
answers

Null object in View

The request: @Entity @Table(name="wp_posts") public class Pedido implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue private Long id; @Column(name="post_status") private String status; @Column(nam...
asked by 30.01.2018 / 19:58
1
answer

@Autowired does not work with my service

I always run the method that accesses what is in another class with @Autowired it becomes null, follow the code below: @Component public class TokenAuthenticationService { @Autowired UserRoleServiceSecurity service; ... void a...
asked by 26.01.2018 / 21:55
0
answers

Unable to calculate MD5 hash in file upload using AWS Sdk in java

Galera, I already researched in several forums and no solution solved my problem. When I upload file to S3 using the Amazon API. The following exception is thrown. com.amazonaws.SdkClientException: Unable to calculate MD5 hash: teste.txt (O si...
asked by 13.12.2017 / 13:50
1
answer

Error creating database with Hibernate and Spring MVC

I'm having a problem running the application. Error ... ERROR [org.springframework.web.servlet.DispatcherServlet] (ServerService Thread Pool -- 58) Context initialization failed: org.springframework.beans.factory.UnsatisfiedDependencyEx...
asked by 16.12.2017 / 01:05
1
answer

change class label according to text

Can anyone help me with this js please? I need the label to change according to the text, if it is "victory" it is success and for "defeat" it gets danger, it follows code below: Note my $ {resultad.statusResults) brings the bank only "Vic...
asked by 27.11.2017 / 19:03
0
answers

Non-angular error

   Request URL: link       Request Method: GET       Status Code: 404 Not Found       Remote Address: 127.0.0.1: 8080       Referrer Policy: no-referrer-when-downgrade   viewsource    Connection:keep-alive    Content-Length:74    Con...
asked by 16.11.2017 / 18:34
2
answers

Persisting a relationship Spring boot

I have the following Entity classes Patients @Entity @Table(name = "pacientes", schema = "sau") public class Pacientes implements Serializable { private static final long serialVersionUID = 5776384003601026304L; @Id @Generated...
asked by 17.11.2017 / 00:04