sam2099 commented on issue #891:
URL: https://github.com/apache/shiro/issues/891#issuecomment-1580184500

   I try shiro version = `2.0.0-alpha-2 ` with Spring boot version=`3.0.6` , 
problem is `org.apache.shiro.spring.web.ShiroFilterFactoryBean` is only support 
`javax.servlet.Filter`, but Spring boot 3 need `jakarta.servlet.Filter`
   ```xml
   <dependency>
         <groupId>org.apache.shiro</groupId>
         <artifactId>shiro-bom</artifactId>
         <version>2.0.0-alpha-2</version>
         <scope>import</scope>
         <type>pom</type>
     </dependency>
   ```
   ```xml
   <dependency>
       <groupId>org.apache.shiro</groupId>
       <artifactId>shiro-jakarta-ee</artifactId>
       <classifier>jakarta</classifier>
   </dependency>
   
   <dependency>
       <groupId>org.apache.shiro</groupId>
       <artifactId>shiro-cdi</artifactId>
       <classifier>jakarta</classifier>
   </dependency>
   
   <dependency>
       <groupId>org.apache.shiro</groupId>
       <artifactId>shiro-core</artifactId>
       <classifier>jakarta</classifier>
   </dependency>
   
   <dependency>
       <groupId>org.apache.shiro</groupId>
       <artifactId>shiro-web</artifactId>
       <classifier>jakarta</classifier>
   </dependency>
   <dependency>
       <groupId>org.apache.shiro</groupId>
       <artifactId>shiro-spring-boot-starter</artifactId>
       <version>2.0.0-alpha-2</version>
   </dependency>
   ```
   
   Any idea?  
   Thank you.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to