随手记
liu_g927
这个作者很懒,什么都没留下…
展开
-
freemarker中文乱码
<!-- 设置 ViewResolver --> <bean id="freemarkerConfiguration" class="org.springframework.ui.freemarker.FreeMarkerConfigurationFactoryBean"> <property name="templateLoaderPath"...原创 2012-06-23 22:05:59 · 93 阅读 · 0 评论 -
oracle:rank
Term: RANKDefinition:In Oracle PL/SQL, RANK function is a built in analytic function which is used to rank a record within a group of rows. Its return type is number and serves for both aggregat...原创 2012-06-26 13:27:17 · 89 阅读 · 0 评论 -
原:hibernate延迟加载延伸的一个问题
hibernate配置延迟加载报:failed to lazily initialize a collection of role: com.ln.jtf.biz.dal.dao.pojos.Customer.cusaccounts, no session or session was closed。原因是web上get子表时session已经关闭。针对这个问题spring提供了解决方案,有两种方...原创 2012-06-30 14:31:47 · 123 阅读 · 0 评论 -
eclipse调试时动态修改参数
debug>variables 右键变量>Change Value原创 2012-07-02 18:38:26 · 202 阅读 · 0 评论 -
VM虚拟机Bridge模式VMnet0网卡无法启动问题
之前通过qq管家优化了系统服务之后,VM怎么也连不上网络,后来把相关关闭的服务都开启,还是无法联网。无意中在VM的message log中看到这个日志:The network bridge on device VMnet0 is temporarily down because the bridged Ethernet interface is down 在VMWARE的Virtual...原创 2012-07-05 23:08:01 · 512 阅读 · 0 评论 -
spring web配置
比较诡异的一个问题,最近将项目移植到maven上管理,打包后发布到服务器上竟然报业务类没有定义:org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'xxx' is defined 在移植之前一切正常,移植后只是将依赖交由maven来管理,配置文件什么的都没有内容上的变更。最后找出的原...原创 2012-07-10 18:13:08 · 90 阅读 · 0 评论 -
struts2配置文件路径
请求时报以下异常:com.opensymphony.xwork2.inject.ContainerImpl$MissingDependencyException: No mapping found for dependency [type=com.opensymphony.xwork2.ObjectFactory, name='default'] in public void com.open...原创 2012-07-12 18:57:20 · 84 阅读 · 0 评论 -
spring 多工程加载多属性集配置问题
<bean id="propertyConfigurerJdbc" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="order" value="1" /> <property nam原创 2012-07-23 14:54:21 · 96 阅读 · 0 评论 -
spring mvc redirect
public class RequestMappingHandlerAdapter extends AbstractHandlerMethodAdapter implements BeanFactoryAware, InitializingBean {.....protected final ModelAndView handleInternal(HttpServletRe...原创 2012-07-30 23:10:19 · 160 阅读 · 0 评论