- 浏览: 1098438 次
- 性别:
- 来自: 成都
最新评论
-
skyesx:
这是2PC实现,更常用的是一个柔性事务的实现,可以参考http ...
Spring分布式事务实现 -
ddbird:
这第一句就不严谨“分布式事务是指操作多个数据库之间的事务”,显 ...
Spring分布式事务实现 -
呵呵6666:
基于互联网支付系统的微服务架构分布式事务解决方案http:// ...
Spring分布式事务实现 -
小黄牛:
写得不错,交流群:472213887
Spring分布式事务实现 -
jiaoqf321456:
这明明是用的apache的压缩,给ant.jar有半毛钱关系吗 ...
使用ant.jar进行文件zip压缩
文章列表
一、服务器端发布WebService服务
1、POM.xml文件中引入相关依赖包
<?xml version="1.0" encoding="UTF-8"?>
<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 htt ...
一、在服务器端的WebSerivce服务发布
1、POM.xml文件引入相关的依赖包
<?xml version="1.0" encoding="UTF-8"?>
<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 h ...
1、springboot 1.x中以非web方式启动
@SpringBootApplication
public class Application implements ApplicationRunner{
public static void main(String[] args) {
new SpringApplicationBuilder()
.sources(Application.class).web(false).run(args);
}
@Override
public void r ...
1、生成公钥、私钥及加密密码
引用
java -cp D:\JavaLib\druid\druid-1.1.6.jar com.alibaba.druid.filter.config.ConfigTools appuser
2、添加druid的jar包到【${Tomcat_home}/lib】目录
引用
如:D:\WebServer\tomcat-cdgys\lib\druid-1.1.6.jar
3、在【${Tomcat_home}/conf/server.xml】中增加jndi数据源
<Resource name="jdbc/appuserDS" ...
1、生成公钥、私钥和密码加密串
java -cp druid-1.0.28.jar com.alibaba.druid.filter.config.ConfigTools pcds123123456
2、使用 Durid 的工具类 ConfigTools 验证加密字符串
@Test
public void db_decrypt_test() throws Exception {
String publicKey = "MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJggkaRJ+bqLMF6pefubEDLViboxYKGTdGe+78DziI ...
1、加密工具类
package com.vajra.security.encrypt;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.spec.Al ...
一、编写服务端并发布
1、定义接口
public interface EchoService {
public String echo(String name);
}
2、接口实现
@WebService(name="wsecho",portName="echoServicePort", serviceName="echoService",targetNamespace="http://ws.logcd.net/")
@SOAPBinding(style = Style.DOCUME ...
Once XFire is in your build’s classpath, creating a web service is as simple as following these three steps:
1. Configure an XFireExporter bean to export a Spring bean as a web service.
2. Configure a Spring DispatcherServlet to handle incoming HTTP requests.
3. Configure a handler mapping so as ...
一、Java访问WebService
(1)使用Axis
import javax.xml.namespace.QName;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
public class AxisWebService {
public static void main(String[] args) {
try {
String endpoint = "http://www.webservicex.net/globalweather.asm ...
一、接口与实现
@WebService
@SOAPBinding(style=Style.RPC)
public interface IHelloWorld {
public String sayHelloWorld(String name);
public List<String> getStringList(List<String> strList);
public List<User> getUserList(List<User> userList);
@XmlJavaTypeAdapter(XM ...
一、接口与实现
@WebService
public interface IUserLogin {
public boolean login(String userId, String password);
public boolean logout(String userId);
public boolean checkLoginState(String userId);
}
@Repository
@WebService(endpointInterface = "net.log_cd.ws.IUserLogin")
pu ...
StringUtils中方法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作方法的补充,并且是null安全的(即如果输入参数String为null则不会抛出NullPointerException,而是做了相应处理,例如,如果输入为null则返回也是null等,具体可以查看源代码)。
除了构造器,StringUtils中一共有130多个方法,并且都是static的,
所以我们可以这样调用StringUtils.xxx()。
下面分别对一些常用方法做简要介绍:
1. public static boolean isEmpty(String st ...
1、字体变形命令
.uppercaseInput{
text-transform: uppercase;
}
.lowercaseInput{
text-transform: lowercase;
}
.capitalInput{
text-transform: capitalize;
}
2、解决字体问题,宋体,英文的标准字体则是Arial和Helvetica等
font-family:Arial, Helvetica, sans-serif;
3、长文本,不换行
.longTxt{
overflow:hidden; ...
JavaScript实用小技巧2
- 博客分类:
- js/css
1.访问剪贴板
window.clipboardData.setData("Text",oSource.innerText);
window.clipboardData.getData("Text");
2.调用Windows自带的配色控件
<OBJECT id=dlgHelper CLASSID="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" width="0px" height="0 ...
一、嵌入式运行Jetty并提供上传文件功能
1、定义处理请求的Handler
public class DispatchRequestHandler extends AbstractHandler {
public void handle(String target, Request baseRequest,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
request.setCharacterEncoding(&q ...