ssj项目学习之struts.xml配置

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
	<!-- 结果资源的路径 -->
	<constant name="struts.convention.result.path"
		value="/WEB-INF/page/" />
	<!-- 在项目中,包路径包含web和action的将被视为Action存在的路径来进行搜索 -->
	<constant name="struts.convention.package.locators"
		value="web,action" />
	<!-- URL资源分隔符 -->
	<constant name="struts.convention.action.name.separator" value="" />
</struts>

你可能感兴趣的:(struts.xml,jpa)