`
文章列表
昨天有人在讨论关于设置System的property,file.encoding修改defaultcharset无效 Properties pps=System.getProperties(); pps.setProperty("file.encoding","ISO-8859-1"); 在java中,如果没有指定charset的时候,比如new String(byte[] bytes),都会调用Charset ...
In a typical struts+spring framework, we know how to inject our “service” into the “action”. But sometime we have to use the “servlet”. I mean the real servlet, not the struts’s action-servlet! For example: We have a servlet name is “UserServlet”, we want to inject the service “MyTaskService” ...
一般我们在form提交时不要担心我们的参数会显示给用户看。 我们主要解决的是以get方式进行url参数传递的问题,如: http://xxx.xxx.xxx.xxx/xxx/xxx.do?pId=101&imageName=processimage.jpg这样的url pId=101&imageName=processimage.jgp这样的参数如何进行加密。 我们采用: java.net.URLEncoder.encode(Base64编码(加密字串), StringCode) 这样的方法来对url中的参数进行加密。 首先我们先说一下如何加密。 ...
32位机上内存无法支持4GB以上的说法太极端,如win2003 server就可以在32位机上认出8GB的内存。 因此Oracle的SGA在32位机上是可以突破2GB这个限制的,不过付出的代阶就是不能使用ASM这个功能,SGA,LargePool, SharePool都要手工来设置值。 本人实验的软件版本为: Oracle版本为10 Linux版本为RedHatAs4或者RedHatAs5 其它版只要是Linux的kernel高于2.4的支持large page的都可以做到,下面是具体步骤: 第一步: 在/boot/grub/grub.conf文件中添加bigpag ...
我们在做J2EE工程中经常会碰到一些常量或者是一些不太用的数据。 这部分数据我们希望是把它放到一个共同的地方,然后大家都能去调用,而不用频繁调用数据库以提高web访问的效率。 这样的东西就是缓存(cache),对于缓存的正确理解是一块不太变动的数据,但是这块数据偶尔或者周期新会被变动的,如: 地区,分公司,省市。。。。。。 当系统一开始运行时,我们可以把一批静态的数据放入cache,当数据变化时,我们要从数据库把最新的数
<!-- [if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>fal ...
Global site tag (gtag.js) - Google Analytics