Sometimes I need to restart all of Chrome.
It looks like the graphics driver dies and restarts, after which some Chrome windows have broken frames where I cannot click on minimize and such.
Do this to kill all chrome processes at once, after which - so far - it has offered to reopen my tabs on restart.
In a CMD shell:
taskkill /IM chrome.exe /F
Wednesday, June 7, 2017
Tuesday, June 6, 2017
Java show classes and jars that are loaded
Java show classes and jars that are loaded by using this jvm option:
-verbose:class
-verbose:class
With spring, call any java code from applicationcontext.xml via expressions and while creating beans.
I found that arbitrary java can be called with spring from the applicationcontext.xml file.
See these:
https://docs.spring.io/spring/docs/current/spring-framework-reference/html/expressions.html
https://stackoverflow.com/questions/11645477/how-to-store-password-as-encrypted-in-properties-file-in-spring
For example:
See these:
https://docs.spring.io/spring/docs/current/spring-framework-reference/html/expressions.html
https://stackoverflow.com/questions/11645477/how-to-store-password-as-encrypted-in-properties-file-in-spring
For example:
<property name="password" value="#{T(blah.myEncryption).decrypt('${whereever.props.are.stored.password}')}" />
Subscribe to:
Posts (Atom)