birth

吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:struts2校验文件的搜索规则

谁都会走 提交于 2020-02-26 14:31:57
<?xml version="1.0" encoding="GBK"?> <project name="struts" basedir="." default=""> <property name="dist" value="classes"/> <property name="src" value="src"/> <path id="classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> <pathelement path="${dist}"/> </path> <target name="compile" description="Compile all source code"> <delete dir="${dist}"/> <mkdir dir="${dist}"/> <copy todir="${dist}"> <fileset dir="${src}"> <exclude name="**/*.java"/> </fileset> </copy> <javac destdir="classes" debug="true" includeantruntime="yes" deprecation="false" optimize="false" failonerror="true"> <src

EL 表达式如何获取对象属性,并且对象属性里面有个日期属性

拜拜、爱过 提交于 2020-02-05 07:53:08
我们知道EL表达式很容易获得基本属性值 例如 request.setAttribute(“age”,11); 我们的EL表达式 ${requestScope.age} 在如果是这样的呢 User_table ut = new User_table ( ) ; ut . setPwd ( "abc" ) ; ut . setUserid ( "aabb" ) ; ut . setBirth ( new Date ( ) ) ; request . setAttribute ( "users" , ut ) ; package com . bean ; import java . text . SimpleDateFormat ; import java . util . Date ; public class User_table { private String userid ; private String pwd ; private Date birth ; public Date getBirth ( ) { return birth ; } public void setBirth ( Date birth ) { this . birth = birth ; } public String getUserid ( ) { return userid ; } public

day 17 成员

耗尽温柔 提交于 2020-01-01 04:48:39
1.成员 在类中你能写的所有内容都是类的成员 2.变量 1. 实例变量:昨天写的就是实力变量,由对象去访问的变量 2. 类变量: 这个变量属于类.但是对象也可以访问 实例变量 class Person: def __init__(self, name, id, gender, birth): self.name = name # 实例变量 对象里的变量 self.id = id self.gender = gender self.birth = birth p = Person("wusir", "10086", "不详", "1900-12-15") print(p.birth) p.birth = "1840-5-6" print(p.birth) # 实例变量一般使用 对象.属性 print(p.name) 类变量 class Person: country = "大清" def __init__(self, name, gender): self.name = name self.gender = gender p = Person("武sir", "未知") p2 = Person("太白", "两性") Person.country = "中国" # 类变量最好是使用类名来访问 # p.country = "大清" # 大坑::没有修改类变量 # p2.country

Hive中的数据分区

匿名 (未验证) 提交于 2019-12-03 00:03:02
首先认识什么是分区 Hive 中的分区就是分目录,把一个大的数据集根据业务需要分割成更下的数据集。 1. 如何定义分区,创建分区 hive > create table test(name string,sex int) partitioned by (birth string, age string); Time taken: 0.044 seconds hive> alter table test add partition (birth='1980', age ='30'); Time taken: 0.079 seconds hive> alter table test add partition ( birth ='1981', age ='29'); Time taken: 0.052 seconds hive> alter table test add partition ( birth ='1982', age ='28'); Time taken: 0.056 seconds hive> show partitions test; birth=1980/ age =30 birth=1981/ age =29 birth=1982/ age =28 2. 如何删除分区 hive> alter table test drop partition (birth=

Struts的vistor校验器

戏子无情 提交于 2019-11-29 13:19:09
一 视图 1 show.jsp <%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %> <%@taglib prefix="s" uri="/struts-tags"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>校验成功</title> </head> <body> <h3>校验成功</h3> 用户名:<s:property value="user.name"/><br/> 密码:<s:property value="user.pass"/><br/> 年龄:<s:property value="user.age"/><br/> 生日:<s:property value="user.birth"/><br/> </body> </html> 2 registForm.jsp <%@ page contentType="text/html; charset=GBK"