`
文章列表
为什么需要 现在同时维护着dev、test、demo、uat环境,由于现在没有绑定域名,在做单点登录的时候,每次打包都需要手动修改web.xml中的ip地址,十分麻烦,并且非常容易出错。 怎么做 使用maven的profile 1.在pom的profile中添加如下代码:新增cas.serverLoginUrl、cas.serverName、cas.serverUrlPrefix三个properties <profiles>     <profile>         <id>development</i ...
1.本项目有三种环境:pro、test、dev 。maven的profile配置如下: <profiles> <!-- 本地开发环境--> <profile> <id>dev</id> <properties> <profiles.active>dev</profiles.active> <deploy.url>http ...
本文主要是进行springmvc与fastjson整合 1.在pom.xml配置fastjson: <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>${fastjson-version}</version> </dependency>      2.web.xml配置: <co ...
1.unix时间戳的计算:System.currentTimeMillis()/1000L 2.unix时间戳转换为指定日期(yyyy-MM-dd HH:mm:ss): Long time = unixTime*1000; String date = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new java.util.Date(time));            
第一次写博客,写得不好,不吝赐教 springmvc将上传的文件封装在一个org.springframework.web.multipart.MultipartFile对象中,接口MultipartFile 具有以下几个方法: byte[] getBytes():以字节数组返回文件的内容; String getContentType():返回文件的内容类型; InputStream getInputStream():返回一个字节流,从中读取文件的内容; String getName():返回参数的名称; String getOriginalFilename():返回上传的文件 ...
Global site tag (gtag.js) - Google Analytics