`
文章列表
1、测试类 package test; import net.sf.json.JSONObject; public class Test { public static void main(String[] args) { // TODO Auto-generated method stub String s="{'name':'张三','age':20}"; JSONObject obj=JSONObject.fromObject(s); User user=(User) JSONObject.toBean(obj, ...
1、复制jar包。 2、复制dwl.xml到WEB-INF下,修改dwr.xml文件。 3、在head之间    <script src='dwr/interface/JUserChecker.js'></script>    <script src='dwr/engine.js'></script>    <script src='dwr/util.js'></script> 4、函数调用,写自己的函数和回调函数 5、在web.xml中进行配置。
使用<s:token>标签 实现步骤: 1、JSP页面上用<s:token> 与struts2的表单一起使用,用<s:actionError/>接受错误信息 2、资源文件app.properties中struts.messages.invalid.token='表单已经提交,不能重复提交';在struts2配置文件中配置属性 <constant name="struts.custom.i18n.resources" value="application"></constan ...
1、select t1.* from ( select t.* from test t where rownum<4 order by id desc) t1 where rownum<2 order by id asc 2、select * from ( select t.*,rownum r from test t where rownum<4 ) where r>1;
1、Java连接SqlServer数据库时错误一: The TCP/IP connection to the host localhost, port 1459 has failed. Error: Connection refused: connect. Please verify the connection properties and check that a SQL Server instance is running on the host and accepting TCP/IP connections at the port, and that no firewall i ...
1.window.showModalDialog: var feature = "dialogWidth:615px;dialogHeight:505px;status:no;help:no;scroll:no;resizable:no;center:yes"; window.showModalDialog(url, Object(传给弹出窗口的参数,可以是任何类型),feature) 决定窗口的外观是第三个参 ...

注解含义

@Transactional  声明这个service所有方法需要事务管理 @Service  是Spring 的标注,是用标注定义来定义 Bean @Autowired  spring可以自动帮你把bean里面引用的对象的setter/getter方法省略,它会自动帮你set/get @Repository  对应存储层Bean @Entity  标注该类为实体类 @Table  说明实体与表的对应 @Repository、@Service、@Controller,它们分别对应存储层Bean,业务层Bean,和展示层Bean
Properties props = new Properties(); InputStream in = ConnectionManager.class.getResourceAsStream("/jdbc.properties"); props.load(in); in.close();
<?xml version="1.0" encoding="UTF-8"  standalone="no"?><templates><template autoinsert="true" context="constructorcomment_context" deleted="false" description="Comment for created constructors" enabled="true&quo ...
public static void main(String[] args) throws Exception { InputStream in=null; try { URL url=new URL("http://yanbh.iteye.com/admin/blogs/1987350"); in=url.openStream(); byte buffer[]=new byte[100000]; in.read(buffer, 0, buffer.length); System.o ...

MD5加密

import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class MD5 { /** * MD5加密类 * @param str 要加密的字符串 * @return 加密后的字符串 */ public static String toMD5(String str){ try { MessageDigest md = MessageDigest.getInstance("MD5"); ...
引用log4j.properties总结: 一、介绍 Log4j是Apache的一个开放源代码项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件、甚至是套接口服务 器、NT的事件记录器、UNIX Syslog守护进程等;我们也可以控制 ...
Global site tag (gtag.js) - Google Analytics