yangcctv 发表于 2017-2-20 07:43:45

Resin入门例子

1.启动Resin
2.创建hello.php, hello.jsp,并copy到<安装目录>\webapps\ROOT下
hello.php
<?php
echo "hello"
?>



hello.jsp
<%
out.println("hello");
%>

3.测试
http://localhost:8080/hello.php
http://localhost:8080/hello.jsp
  

  来自:http://qiutian110119.blog.163.com/blog/static/54617311201131132737676/
  更多关于resin的学习:http://qiutian110119.blog.163.com/blog/static/546173112012410103210280/
页: [1]
查看完整版本: Resin入门例子