ssh
immenselee
这个作者很懒,什么都没留下…
展开
-
error: src refspec master does not match any
git需要先将修改的更新提交到本地仓库(一般是提交到master)—>之后再Push到github等SSH远程仓库上上原创 2021-01-11 21:23:43 · 430 阅读 · 0 评论 -
使用Struts2+Jquery实现ajax 提交action 不跳转 表单 并返回json类型数据,并使用js添加数据到前端,评论框
一、前端设计 <table class="table table-striped" id="tableOne"> <thead> <tr > <th>用户名</th&原创 2019-03-13 13:20:35 · 409 阅读 · 0 评论 -
action初始化模板,SSH
/** * */package struts2.action;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpSession;import org.apache.struts2.ServletActionContext;import com.opensymphony.xwor...原创 2019-03-12 22:21:05 · 192 阅读 · 0 评论 -
Spring 使用Hibernate事务管理:update等操作无效果问题
使用Spring事务管理需要使用getCurrentSession获取session在操作中不要显示的关闭session不需要进行编码式事务,使用声明式事务实际问题:经常会遇到事务管理使用hibernate时,在调用update方法时,数据返回正确,而数据 库却没有更新调用save保存数据时,返回存储成功,数据库没有更新删除数据时删除成功,数据库依然没有更新等问题原因:...原创 2019-03-12 18:21:51 · 1248 阅读 · 0 评论 -
java.lang.NoClassDefFoundError: org.springframework.beans.FatalBeanException
我是在Spring 管理HIbernate 的设置过程中新生成的DAO文件,在修改了ApplicationContext ctx=new ClassPathXmlApplicationContext("applicationContext.xml"); SessionFactory sessionFactory=(SessionFactory) ctx.getBean("sessionFac...原创 2019-03-06 23:00:00 · 1623 阅读 · 0 评论 -
org.hibernate.MappingException: Unknown entity:,Hibernate Tools,sessionFactory,Home
2.解决方案可能一:将*.hbm.xml中的class标签中的name写为类所在路径。错误时为:<class name="Student" table="STUDENTS">修改后为:<class name="org.hibernate.model.Student" table="STUDENTS">可能二:可能是获取sessionFactory方式有问题转载 2019-03-06 17:15:27 · 295 阅读 · 0 评论 -
Unable to load configuration. - action 解决方案
struts.xml文件写错了我是把 <action name="FollowPeople" class="struts2.action.FollowPeople">写成了<action name="FollowPeople" class="struts2.action.FollowPeople.java">原创 2019-03-04 21:41:15 · 3581 阅读 · 0 评论 -
怎么通过超链接给Action传值
需要你去看你的struts配置文件。假如action的namespace=’/company’;action的名字为xx则应该写为:<a href="/company/xx.action">链接<a>如果需要传参数a,且a的值为1:<a href="/company/xx.action?a=1">链接<a>如果传参个数大于1,则将参数之间...转载 2019-03-01 13:13:13 · 1752 阅读 · 0 评论 -
struts2中设置首页action的方法,SSH首页如何直接调用数据库展现
问题:如何直接通过根目录访问首页(首页需要调用数据库的内容来展现信息)原题目:struts2中<welcome-file>index.action</welcome-file>直接设置action,404的解决方案这几天的项目页面的访问全部改为.action访问,在修改首页时遇到了问题。将web.xml文件中<welcome-file>index.actio...转载 2019-02-25 13:18:18 · 448 阅读 · 0 评论 -
Struts2文件(图片)上传及页面显示
1、导入文件上传的两个jar包commons-io-2.5.jarcommons-fileupload-1.3.2.jar2、jsp上传页面代码&lt;form action="FileUpload2" enctype="multipart/form-data" method="post" &gt; 上传文件:&lt;inp翻译 2018-07-22 16:02:31 · 1004 阅读 · 0 评论 -
Could not locate SessionFactory in JNDI,Spring4+Hibernate4整合,关于获取SessionFactory
spring加载hibernate里的sessionfactory的三种方式方式1:只加载SessionFactory &lt;beanid="sessionFactory"class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"&gt; &lt;propertyn转载 2018-07-23 14:18:44 · 544 阅读 · 0 评论 -
java问题action如何调用其它action的方法 action可否调用其它action的方法 ssh
你可以直接在那个action里面 如<result name="success">/index.jsp</action>可以那他改成<result name="success" type="redirect">*****.action</action>我的例子: <action name="原创 2018-06-18 17:50:12 · 2775 阅读 · 0 评论 -
关于Struts2+spring中使用百度UEditor编辑器显示未找到上传数据的解决方法
关于Struts2+spring中使用百度UEditor编辑器显示未找到上传数据的解决方法 在strut2框架使用百度编辑器时候,点击添加图片时会出现未找到上传数据,通过查找一下资料,发现主要原因在于Struts拦截了百度UEditor编辑器的controller.jsp里面的方法,解决的办法是重写拦截器的doFilter方法,重写父类StrutsPrepareAndExecuteFilte...转载 2018-06-09 22:00:05 · 360 阅读 · 0 评论 -
userhome hibernate session saveorupdate 与事务的关系
package jiajiao.qiantai;// Generated 2018-5-16 11:51:31 by Hibernate Tools 3.5.0.Finalimport java.util.List;import javax.naming.Context;import javax.naming.InitialContext;import org.apache.comm...原创 2018-06-06 18:59:32 · 3287 阅读 · 0 评论 -
设置默认加载action,首页加载action获取数据,struts.xml
wel.xml是这样配置的:<welcome-file-list> <welcome-file>index.action</welcome-file> </welcome-file-list> struts.xml是这样配置的: <action name="index" class="com.syspro...原创 2018-06-11 22:57:55 · 650 阅读 · 0 评论 -
Hibernate Tools的在线安装----The selected wizard could not be started
自己离线安装,不知道为什么老是出现The selected wizard could not be started 问题,使用clean命令也不行。。。。。。。。。。 最后在线安装成功! Hibernate Tools的在线安装 1. 运行Eclipse,选择菜单【Help|Install New Software】选项,弹出Install对话框单击【Add】按钮,弹出...转载 2018-05-15 23:59:23 · 3363 阅读 · 0 评论