Posts by Guilherme Stella • 21 points
5 posts
-
1
votes1
answer313
viewsA: Lazy Load in Hibernate
Though you have declared one FetchType.LAZY in his JPA mapping, Jackson tends to get the object anyway because that’s his goal. I don’t know your API, but in case you never want to expose the…
-
1
votes1
answer41
viewsA: save a record to a list of an entidate
puts cascade={CascadeType.ALL} in his OneToMany
-
0
votes1
answer147
viewsA: I cannot use Webpack in my project
With the webpack installed, configure your webpack.config.js module.exports = { entry: './main.js', output: { filename: './bundle.js', path: path.resolve(__dirname,'dist') } }; put in your…
webpackanswered Guilherme Stella 21 -
0
votes1
answer43
viewsA: Invocationtargetexception in dynamic method
Solved. Being using CDI, I did the "newInstance" by this method: Object obj = CDI.current().select(clazz).get();
-
0
votes1
answer43
viewsQ: Invocationtargetexception in dynamic method
I’m in a very strange situation. I get it from my Bean the following arguments: #{segurancaBean.callSubAcaoMethod(subAcao, moduloBean.class.name, modulo.id)} This method is dynamic: public void…