- 浏览: 422554 次
- 性别:
- 来自: 深圳
最新评论
-
aplixy:
gaoyibin 写道我在io流关闭以后使用renameTo ...
Java File.renameTo方法一直返回false -
GGGGeek:
...
java反射:object is not an instance of declaring class -
zgw06629:
多谢了 字符串必须要单引号真得挺坑的
s:radio 默认值 -
com.張:
村上春树
java反射:object is not an instance of declaring class -
僧_唐:
该方法不能真正的解决 actionMessage或action ...
struts2中多action间传递ActionMessage,ActionError
文章列表
一、现象:
每次启动Tomcat 的时候,工程会被加载两次
二、原因:
配置虚拟目录引起,如下配置:
<Host name="localhost" debug="0" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path ...
报错如下:
java.net.UnknownHostException: 主机名: 主机名
at java.net.InetAddress.getLocalHost(InetAddress.java:1353)
at net.sf.ehcache.Cache.<clinit>(Cache.java:145)
at net.sf.ehcache.config.ConfigurationHelper.createCache(ConfigurationHelper.java:452)
at net.sf.ehcac ...
做IP地址过滤时,非代理获取客户端ip时,用http://localhost:8080/aapname访问应用程序,通过如下代码获取客户端ip为0:0:0:0:0:0:0:1:
ServletActionContext.getRequest().getRemoteAddr();
原因是跟操作系统有关系,我用的是windows7操作系统,支持IP V6格式,所以输出0:0:0:0:0:0:0:1;
解决ServletUrlRenderer WARN警告:
[org.apache.struts2.components.ServletUrlRenderer:http-8000-1:45] - No configuration found for the specified action: 'sums' in namespace: '/example'. Form action defaulting to 'action' attribute's literal value.
struts.xml配置:
<package name="Library" na ...
Tomcat中web.xml文件的详细说明
<?xml version="1.0" encoding="GB2312"?> <!--
Web.xml依次定议了如下元素:
<web-app>
<display-name></display-name> 定义了WEB应用的名字
<description></description> 声明WEB应用的描述信息
<filter></filter>
<filter-mapping></ ...
log4j.logger.com.danga.MemCached.MemCachedClient=ERROR
或整个log4j.logger.com.danga.MemCached=ERROR
myeclipse 8.0 更改默认workspace:
修改MyEclipse8安装目录\configuration\config.ini文件,在此文件中添加或编辑:
osgi.instance.area.default=file\:/D\:/dev_root/projects/workspace(指定workspace)
1、Spring数据源配置如下:
配置主从数据源ds1,ds2,分别提供给统一的数据源ds来调度;
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
<!-- 配置数据源 -->
< ...
JS跳出IFrame
- 博客分类:
- javascript
<script type="text/javascript">
if (top.location !== self.location) {
top.location = self.location;
}
</script>
在maven中添加如下包依赖:
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-json-plugin</artifactId>
<version>2.1.8.1</version>
</dependency>
在页面定义触发jquery的function方法:(要在页面导入jQuery.js)
function detail(param){
$.ajax({
type: ...
在action中定义一个返回list对象的方法:
public List getBusStateFront() {
List<Map> list = new ArrayList<Map>();
Map data = new HashMap();
data.put("id", "Y");
data.put("val", "Y");
list.add(data);
data = new HashMap();
data.put("id& ...
select count(*) from information_schema.tables
where table_schema = '数据库名' and table_name = '表名';
public HttpServletResponse download(String path, HttpServletResponse response) {
try {
// path是指欲下载的文件的路径。
File file = new File(path);
// 取得文件名。
String filename = file.getName();
// 取得文件的后缀名。
String ext = filenam ...
<style type="text/css">
.imgcontrol {
border: 0;
margin: 0;
padding: 0;
max-width: 590px;
width: expression(this . width > 590 ? "590px" : this . width);
max-height: 590px;
height: expression(this . height > 590 ? "590px" : this . height);
}
</sty ...
mysql : select ifnull(max(id),0) as maxid from table
sqlserver : select isnull(max(id),0) as maxid from table