- 浏览: 39118 次
- 性别:
- 来自: 杭州
文章列表
您还未登录!|登录|注册|帮助首页业界移动云计算研发论坛博客下载
更多
CTO成长之路——Rosanu
My way, it is stopped by nobody!
目录视图摘要视图订阅
新版论坛系列介绍之二——功能介绍篇 2012 SDCC门票社区团购火热开 ...
Maven下使用JRebel热部署安装,
此安装方式主要是设置服务器的启动参数设置,请右击项目名称 — > Run As — >Run Configuration — > 选择相应的服务器— >Arguments — > 在 VM arguments 输入如下参数:
-noverify -javaagent:F:/workspace/agent/target/tomcat/jrebel.jar
-Drebel.dirs=F:/workspace/agent/target/agent/WEB-INF\classes
-Drebel.spring_plugin=true ...
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<property name="successUrl" value="/index.jsp" />
<property name="un ...
1.日期:
@Temporal(TemporalType.DATE)
@Column(name = "createDate", nullable = false, length = 10)
public Date getCreateDate() {
return createDate;
}
在页面端取值:2011-04-12
2.时间:
@Temporal(TemporalType.TIME)
在页面端取值:22:50:30
3.日期和时间(默认):
@Temporal(TemporalType.TIMESTAMP)
在页面端取值:2011-0 ...