Posts by DSCM • 68 points
9 posts
-
0
votes2
answers28
viewsQ: Data Calendar updating alone
I have a method in the application where I add the service date the warranty time the customer has. To execute the method I return from the database a list with all sales/services performed and when…
-
1
votes1
answer53
viewsA: How to check a Datagridviewcheckboxcolumn column in VB.NET
The idea is you create a method to check the change of state. Private Sub dgv_CellContentClick(sender As Object, e As DataGridViewCellEventArgs) Handles dgv.CellContentClick // vê se a culuna…
-
0
votes0
answers50
viewsQ: Object Link
I am developing an application and came across the following "problem": @RequestMapping("/pagamentos") public ModelAndView pagamentos(FormaPagamento pagamento){ ModelAndView model = new…
-
0
votes2
answers689
viewsQ: Send List + Parameter to Controller
I am trying to send a list and parameter to my controller. My controller is as follows: @RequestMapping("/lista-receitas") @ResponseBody public String recebeLista(@RequestBody List<Receita>…
-
0
votes0
answers226
viewsQ: block access with Spring
Beauty, in the configuration I made I’m not able to block access to the pages that are inside another folder inside my folder views. In case I’m trying to block access to everything inside the…
-
2
votes1
answer738
viewsQ: Permissions Spring Security
I’m having trouble with the user permissions using Spring Security. I registered the user assigns to him the permission due to him, but when accessing the system the option in the menu that the user…
-
0
votes1
answer490
viewsQ: Spring Security Permissions
I am developing a system for my college TCC. I am creating the user authentication part. I wonder if someone has a simple example of Spring Security configuration of users who have more than one…
-
0
votes2
answers61
viewsA: Procedure sql server 2012 + java
I also ran a test with the code as follows: public void create(Produto produto){ try { cs = this.con.prepareCall("{call dbo.MEJT_SP_CAD_PRODUTOS(?, ?, ?, ?, ?) }"); cs.setString("MODO", "INSERIR");…
-
1
votes2
answers61
viewsQ: Procedure sql server 2012 + java
I want to structure an INSERT using JAVA in the same way that INSERT is structured in VB .NET. It follows how the code is in VB . NET: Const _spName = "dbo.MEJT_SP_CAD_PRODUTOS" Public Function…