已采納回答 / yuorchid
數(shù)據(jù)庫(kù)編碼改utf-8可以修改mysql的配置文件 .ini,加#服務(wù)端的編碼方式 ?character-set-server=utf8 ?[client] ?#客戶端編碼方式,最好和服務(wù)端保存一致 ?loose-default-character-set = utf8?
2017-12-18
最新回答 / 慕村6019880
struts , hibernate , spring 都可以直接在網(wǎng)上搜索的如:http://struts.apache.org/download.cgi?這個(gè)就是struts2 下載網(wǎng)址, 你可以選擇版本
2017-12-16
最新回答 / 慕粉2213397909
返回“SUCCESS":表示進(jìn)行業(yè)務(wù)處理成功時(shí)返回該字符串,同時(shí)也是execute()方法默認(rèn)返回的字符串,如果不成功,則返回"ERROR"字符串,或者其他自定義字符串,這些字符串是用來(lái)在struts配置action時(shí)用到
2017-12-16
最新回答 / 慕村6019880
我使用第一種方法:action的類(lèi)由struts2自身創(chuàng)建也會(huì)出這個(gè)錯(cuò)誤,也沒(méi)解決。但是使用第二種方法交由spring創(chuàng)建就行的。需要修改兩個(gè)地方,struts.xml 的class 修改為?productAction,并在applicationContext.xml 中添加<!-- 配置Action類(lèi)? 因?yàn)槭悄J(rèn)是單例,所以要加上scope-->? ? <bean id="productAction" class="com.ssh.action.ProductAction" sco...
最新回答 / qq_滿天星_19
class中應(yīng)該是 cn.muke.ssh.action.ProductAction題外話:我的跳轉(zhuǎn)addProduct.jsp頁(yè)面也報(bào)錯(cuò)500,空指針異常???
最新回答 / 慕田峪5126163
<head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Insert title here</title></head><body><h1>保存商品的頁(yè)面</h1><s:form action="product_save" ?method="post" ?namespace="/" ? the...
已采納回答 / 慕田峪5126163
<?xml version="1.0" encoding="UTF-8"?>?<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"><struts> </struts>
2017-11-24
最新回答 / 慕函數(shù)9753014
沒(méi)有導(dǎo)入jdbc包
最新回答 / next2017
你看著視頻里筆記,自己敲一遍啊
最新回答 / FeiLis
你訪問(wèn)的路徑對(duì)嗎?如果你的jsp頁(yè)面是在WebRoot目錄下,其路徑如下:http://localhost:8080/ssh/addProduct.jsp ? 其中:ssh是項(xiàng)目名稱(chēng),addProduct.jsp是在WebRoot目錄下的jsp頁(yè)面
最新回答 / 慕勒3251033
application.xml<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://...
2017-10-22