- 浏览: 139880 次
- 性别:
- 来自: 深圳
最新评论
-
wzk2111:
代码 可用,楼主的思路可以参考
javascript加密java解密 -
Imini123:
[align=center][color=red][/colo ...
freemarker实现通用分页,首页静态化,通用select,通用文章显示 -
igting:
js对+,@符号的加密应该有问题,java解密不对。
javascript加密java解密 -
Seanman:
初学freemarker,源码不全,不知道怎么用
freemarker实现通用分页,首页静态化,通用select,通用文章显示 -
无敌洋葱头:
目前这个只能对0-9 A-Z a-z加密,而且js还有问题。c ...
javascript加密java解密
<settings> <!--<localRepository>D:/maven-2.2.1/.m2/repository</localRepository>--> <proxies> <proxy> <id>normal</id> <active>true</active> <protocol>http</protocol> <username>congmin.jin</username> <password>123456</password> <host>nexus.tech.2caipiao.com/</host> <port>80</port> <nonProxyHosts>nexus.tech.2caipiao.com</nonProxyHosts> </proxy> </proxies> <mirrors> <mirror> <!--This is used to direct the public snapshots repo in the profile below over to a different nexus group --> <id>nexus-public-snapshots</id> <mirrorOf>public-snapshots</mirrorOf> <url>http://nexus.tech.2caipiao.com/content/groups/public-snapshots </url> </mirror> <mirror> <!--This sends everything else to /public --> <id>nexus</id> <mirrorOf>*</mirrorOf> <url>http://nexus.tech.2caipiao.com/content/groups/public</url> </mirror> </mirrors> <profiles> <profile> <id>development</id> <repositories> <repository> <id>central</id> <url>http://central</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>central</id> <url>http://central</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> <profile> <!--this profile will allow snapshots to be searched when activated --> <id>public-snapshots</id> <repositories> <repository> <id>public-snapshots</id> <url>http://public-snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>public-snapshots</id> <url>http://public-snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <activeProfiles> <activeProfile>development</activeProfile> </activeProfiles> <servers> <server> <id>Releases</id> <username>congmin.jin</username> <password>123456</password> </server> <server> <id>Snapshots</id> <username>deployment</username> <password>deploydv89</password> </server> <server> <id>thirdparty</id> <username>congmin.jin</username> <password>123456</password> </server> <server> <id>tomcat-66-16</id> <username>admin</username> <password>aa123123</password> </server> <server> <id>tomcat-localhost</id> <username>admin</username> <password>aa123123</password> </server> </servers> </settings>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-rootpom</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>moneygateway-rootpom</name> <modules> <module>moneygateway-common</module> <module>moneygateway-client</module> <module>moneygateway-server</module> </modules> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.xxx.maven</groupId> <artifactId>parentpom-jar</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-common</artifactId> <version>1.0.0-SNAPSHOT</version> <name>Moneygateway-common for The Moneygateway project</name> <description>提款银行公用包</description> <dependencies> <dependency> <groupId>com.xxx.coreservice</groupId> <artifactId>coreservice-common</artifactId> <version>1.3.0-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-asm</artifactId> </exclusion> <exclusion> <groupId>org.objectweb</groupId> <artifactId>asm</artifactId> </exclusion> <exclusion> <groupId>org.hibernate</groupId> <artifactId>hibernate-commons-annotations</artifactId> </exclusion> <exclusion> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.xxx.maven</groupId> <artifactId>parentpom-jar</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-common</artifactId> <version>1.0.0-SNAPSHOT</version> <name>Moneygateway-common for The Moneygateway project</name> <description>提款银行公用包</description> <dependencies> <dependency> <groupId>com.xxx.coreservice</groupId> <artifactId>coreservice-common</artifactId> <version>1.3.0-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-asm</artifactId> </exclusion> <exclusion> <groupId>org.objectweb</groupId> <artifactId>asm</artifactId> </exclusion> <exclusion> <groupId>org.hibernate</groupId> <artifactId>hibernate-commons-annotations</artifactId> </exclusion> <exclusion> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.xxx.maven</groupId> <artifactId>parentpom-jar</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-client</artifactId> <version>1.0.0-SNAPSHOT</version> <name>client for moneygatewayservice</name> <description>client for moneygatewayservice</description> <properties> <spring.version>3.2.3.RELEASE</spring.version> </properties> <build> <finalName>moneygateway</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.3</version> <configuration> <!-- 防止testng的干扰 --> <testNGArtifactName>none:none</testNGArtifactName> <skip>true</skip> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-common</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>com.xxx.memcachedclient</groupId> <artifactId>xxx-memcachedclient</artifactId> <version>2.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.xxx.maven</groupId> <artifactId>parentpom-war</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-server</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>war</packaging> <name>moneygateway-server Maven Webapp</name> <properties> <spring.version>3.2.3.RELEASE</spring.version> </properties> <profiles> <profile> <id>product</id> <dependencies> <dependency> <groupId>com.xxx.passwordencrypt</groupId> <artifactId>xxx-passwordencrypt</artifactId> <version>2.0.1</version> </dependency> </dependencies> </profile> </profiles> <build> <finalName>moneygateway</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.3</version> <configuration> <!-- 防止testng的干扰 --> <testNGArtifactName>none:none</testNGArtifactName> <skip>true</skip> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.xxxpiao</groupId> <artifactId>tiger-commons</artifactId> <version>1.2.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.xxx.coreservice</groupId> <artifactId>coreservice-client</artifactId> <version>1.3.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.xxx.payment</groupId> <artifactId>payment-client</artifactId> <version>1.0.2-SNAPSHOT</version> </dependency> <dependency> <groupId>com.xxx.moneygateway</groupId> <artifactId>moneygateway-common</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>com.xxx.datachange</groupId> <artifactId>xxx-datachange-client</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <!-- spring jar --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <!-- 以下spring未必需要,但可将同一版本提升 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId><!-- 还有个hibernate悲观锁的异常类用到 --> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-oxm</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>com.xxx.springutil</groupId> <artifactId>xxx-springutil</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>0.2.5</version> </dependency> <dependency> <groupId>quartz</groupId> <artifactId>quartz</artifactId> <version>1.5.2</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.5</version> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.xxx.unit</groupId> <artifactId>xxx-unitutil</artifactId> <version>1.0.0-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock</artifactId> <version>2.6.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> </dependencies> </project>
发表评论
文章已被作者锁定,不允许评论。
-
ES聚合查询大全
2020-11-18 16:16 266package com.xxx.es; import ... -
spring中使用logback日志组件替换log4j
2015-04-29 15:27 942logback比log4j的强大之处,请到logback的主页 ... -
java加密解密
2015-02-10 15:05 1728package com.neo.xnol.weixin.u ... -
eclipse常用配置
2015-01-05 11:23 1239Eclipse常用配置介绍 以 ... -
分布式事务-幂等
2014-12-30 14:04 680引用 http://www.360doc.com/conten ... -
实现基于nginx的tomcat负载均衡和集群配置
2014-12-26 16:22 1114今天看到"基于apache的tomcat负载均衡和集 ... -
java导出Excel
2014-10-14 17:00 1102package com.xxxpiao.datacompa ... -
<base target="_self"/>标签的巧妙用法
2014-10-10 15:34 745最近项目中一个小问题卡了我不少时间。我遇到的问题是:在项目的弹 ... -
分布式一致性-幂等
2014-09-28 14:53 1096关于分布式系统的数据 ... -
ModelResult-查询封装类
2014-09-25 09:14 3538package com.xxx.appmodel.doma ... -
LDAP工具类
2014-09-05 10:12 883package com.xxxpiao.common.ut ... -
通过JNDI访问LDAP目录服务
2014-09-04 17:46 3104package com.sina.test; imp ... -
java获取两个日期之间的年月(yyyy-MM)和年月日(yyyy-MM-dd)
2014-07-29 14:42 1833public List<String> pro ... -
maven-.m2
2014-07-28 14:48 797<settings> <!--< ... -
验证敏感词汇
2014-07-04 10:01 957package com.xxxpiao.core.memb ... -
Jms实战
2014-07-02 09:27 695<?xml version="1.0&qu ... -
互联网数功能位,表扩展(flagBit,feature)
2014-06-26 17:39 811<select id="queryRegT ... -
线程运用-抽象类使用
2014-06-26 17:34 845package com.xxx.betcart.serve ... -
JDBC分批更新
2014-06-26 17:11 620@Override public boolean ba ... -
分批查询
2014-06-26 17:08 833package com.xxxpiao.common.ut ...
相关推荐
《Maven实战》是一本专为Java开发人员设计的指南,深入浅出地介绍了Maven这一强大的项目管理和构建工具。Maven是Apache软件基金会开发的一个开源项目,它以XML文件格式定义项目,能够自动化构建、依赖管理和项目信息...
Maven 实战(361)_12804356.pdf
** Maven实战:所有源代码详解 ** Maven是一款强大的项目管理和构建工具,广泛应用于Java开发领域。它通过一套约定优于配置的原则,简化了项目的构建、依赖管理以及文档生成等工作。本篇文章将深入探讨"Maven实战...
Maven 实战(书签版) 影印版,影印规整,十分清晰,强烈推荐!
Maven实战 好书 学习参考.pdf
《Maven实战》一书是Java开发者深入了解和掌握Maven构建工具的重要参考资料。该书的源代码涵盖了多个章节,包括ch-17、ch-3、ch-7、ch-8、ch-5、ch-10、ch-18和ch-12等,这些章节的内容广泛且深入,涉及了Maven的...
非常好的一本maven书 Maven实战 完整高清版
### Maven实战:Maven的安装、配置及使用入门 #### Maven概述 Maven是一款流行的Java项目管理和理解工具,由Sonatype公司支持,并广泛应用于Java项目的构建、依赖管理和文档生成等领域。Maven通过一种约定优于配置...
《Maven实战》徐晓斌 完整高清版.pdf
《Maven实战源码》是一本专为Java开发者设计的指南,旨在帮助初学者和有经验的开发者深入理解和掌握Maven这一强大的项目管理和构建工具。Maven不仅简化了项目的构建过程,还通过依赖管理和插件机制,使得软件开发...
项目管理,maven实战教程,提高对项目的管理和配置,改进项目效率
Maven实战为许晓斌著。资源里面包括Maven实战pdf、程序所带源码。在eclipse开发时,需要下载m2e,下载地址http://download.eclipse.org/technology/m2e/releases/。eclipse 4.5 以上版本带的有Maven 插件,在下载m2e...
Maven实战].许晓斌.高清PDF扫描版.
《Maven实战》 许晓斌
Maven实战(高清完整带书签).pdf
很长时间没接触过代码了,几年前开发时用过maven,没怎么深究,近来网上搜罗了一下大名鼎鼎的《maven实战》,下载了完整版,。为了方便阅读自己做了一个目录。利己及人,仅限自用,勿作其他用途。
Maven实战》完整高清版.pdf
《Maven实战完》完整高清版-带目录-许晓斌.pdf