Posts by Wesley Santos • 93 points
21 posts
-
0
votes1
answer57
viewsA: Doubt How to perform onChange on two Selects
Good staff I appreciate more I managed to settle in the following way: $( "#nomeSubStatusAnomalia" ).prop( "disabled", true ); $("#nomeStatus").change(function () { var StatusAnomalia =…
-
1
votes1
answer57
viewsQ: Doubt How to perform onChange on two Selects
I would like to know how to perform an onChange in the two selects I have in my form follow the selects: <div class="row"> <div class="col-md-12"> <div class="form-group…
-
0
votes1
answer79
viewsA: Date and Time Data Type Elements
The problem has already been solved in the way I was accessing the object. I was accessing the object directly, but after I took a look at the json I saw that I needed to access the object and then…
-
0
votes1
answer63
viewsQ: How to work with javascript object
Well I’m having a hard time understanding how to work with an object that comes from my javascript controller, I’ve already done some tests to make sure that this information has gone up correctly…
-
0
votes2
answers117
viewsQ: Create a Download according to element id
I created a system that uploads several files, but I ran into the following problem: I need to create a way to download according to the element id in the database. I wonder if anyone has an idea I…
-
0
votes2
answers90
viewsA: Problem Handling a list of Objects in jsp
Good staff thank you for the most help I managed to resolve using the foreach thank you very much
-
0
votes2
answers90
viewsQ: Problem Handling a list of Objects in jsp
I’m having trouble handling a list that comes from my controller in my jsp I believe I’m not using the right way to treat and go through this list follows my controller who creates the list.…
-
0
votes1
answer762
viewsQ: How to Save the File Path to the Bank
I am having a doubt I would like to know with saving the path of images and files that I currently upload I save this files in a folder but I would also like to have the path in the database how can…
-
0
votes1
answer262
viewsQ: Error While Uploading with Bootstrap fileinput
Well I’m having problems with this plugin would like to know if anyone has messed with it and if it could help in the question I am having problems communicating with the controller I am taking the…
-
1
votes0
answers37
viewsQ: Problems with Call Post
Following I am making the following mistake when calling a POST method 405 (Method Not Allowed) follows the method I’m trying to call @RequestMapping(value = "/upload", method = { RequestMethod.POST…
-
0
votes0
answers291
viewsQ: Doubt How to Recover Data in blob format and display in jsp
Good Staff I am with a very critical doubt I am not managing to recover the data from a field of my database that has the format blob I read some documentations but I could not understand very much…
-
0
votes1
answer79
viewsQ: Date and Time Data Type Elements
Personal I would like to ask a question, we should treat differently fields that have as kind of data time and date I say in relation to the view, Why I have a problem I need to plot some date and…
-
0
votes1
answer1469
viewsA: Problem while doing an update
Well I managed to solve the problem, the error was in not setting the version I did that and the problem was fixed.
-
0
votes1
answer1469
viewsQ: Problem while doing an update
Well I’m having difficulty to perform an update on my database it is presenting the following Exception. ERROR [org.springframework.security.web.Authentication.Usernamepasswordauthenticationfilter]…
-
0
votes0
answers45
viewsQ: Difficulties with Logic A
Well the scenario is the following I am trying to develop an electronic point through my application but I locked in the logic of authentication of the dates and hours of work following in the logic…
-
1
votes1
answer142
viewsQ: Problem passing information on my login
am receiving this Exception at the time of logging in ERROR [org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter] (default task-10) An internal error occurred while…
-
0
votes1
answer53
viewsQ: Problem to persist data in the database
follows the error I am taking at the time of persisting the data: 09:19:29,437 ERROR [io.undertow.request] (default task-7) UT005023: Exception handling request to /sic/usuario/salvar:…
-
0
votes2
answers634
viewsA: Error with @Autowired annotation
@Controller public class Usercontroller { @Autowired private UserDAOImpl userDAO; @RequestMapping("user/userRegistered") public String userRegistered(User user) { userDAO.save(user); return…
-
1
votes1
answer178
viewsQ: Arraylist repeating itself
I have an array that whenever I refresh my page, it duplicates. I did some tests to see if it was duplicated in Javascript, but found nothing. This is the Javascript: <script…
-
0
votes1
answer98
viewsQ: Dficulty to handle a list with Javascript
I’m having a hard time handling a list by javascript would like a tip or help if possible that’s the mistake I’m making Array [ "AC.FIXED" ] registration:280:4 Referenceerror: $ is not defined[Learn…
javascriptasked Wesley Santos 93 -
0
votes1
answer61
viewsQ: Returning Nullpointer in controller
I have a method in controller which has as its function to make a query in my bank and after returning me only one field of this search, however I am taking nullpointer in the first for that I’m…